| @@ -31,25 +31,25 @@ | ||
| 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 | } | 
| @@ -15,6 +15,6 @@ | ||
| 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 | } | 
| @@ -16,6 +16,6 @@ | ||
| 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 | } | 
| @@ -15,6 +15,6 @@ | ||
| 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 | } |