Passed
Push — master ( f31f02...270b07 )
by Curtis
07:49 queued 11s
created
app/Providers/AppServiceProvider.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -31,25 +31,25 @@
 block discarded – undo
31 31
 
32 32
     public function boot()
33 33
     {
34
-        $this->app->bind(ValidatePersonStore::class, function () {
34
+        $this->app->bind(ValidatePersonStore::class, function() {
35 35
             return new LocalPersonStore();
36 36
         });
37
-        $this->app->bind(ValidatePersonUpdate::class, function () {
37
+        $this->app->bind(ValidatePersonUpdate::class, function() {
38 38
             return new LocalPersonUpdate();
39 39
         });
40
-        $this->app->bind(ValidatePersonRequest::class, function () {
40
+        $this->app->bind(ValidatePersonRequest::class, function() {
41 41
             return new LocalPersonRequest();
42 42
         });
43
-        $this->app->bind(EnsoPerson::class, function () {
43
+        $this->app->bind(EnsoPerson::class, function() {
44 44
             return new LocalPerson();
45 45
         });
46
-        $this->app->bind(Person::class, function () {
46
+        $this->app->bind(Person::class, function() {
47 47
             return new LocalPerson();
48 48
         });
49
-        $this->app->bind(PersonTable::class, function () {
49
+        $this->app->bind(PersonTable::class, function() {
50 50
             return new LocalPersonTable();
51 51
         });
52
-        $this->app->bind(PersonForm::class, function () {
52
+        $this->app->bind(PersonForm::class, function() {
53 53
             return new LocalPersonForm();
54 54
         });
55 55
     }
Please login to merge, or discard this patch.
app/DynamicRelations/Company/Discussions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,6 +15,6 @@
 block discarded – undo
15 15
 
16 16
     public function closure(): Closure
17 17
     {
18
-        return fn () => $this->morphMany(Discussion::class, 'discussable');
18
+        return fn() => $this->morphMany(Discussion::class, 'discussable');
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
app/DynamicRelations/Company/Documents.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,6 @@
 block discarded – undo
16 16
 
17 17
     public function closure(): Closure
18 18
     {
19
-        return fn () => $this->morphMany(Document::class, 'documentable');
19
+        return fn() => $this->morphMany(Document::class, 'documentable');
20 20
     }
21 21
 }
Please login to merge, or discard this patch.
app/DynamicRelations/Company/Comments.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,6 +15,6 @@
 block discarded – undo
15 15
 
16 16
     public function closure(): Closure
17 17
     {
18
-        return fn () => $this->morphMany(Comment::class, 'commentable');
18
+        return fn() => $this->morphMany(Comment::class, 'commentable');
19 19
     }
20 20
 }
Please login to merge, or discard this patch.