@@ -173,8 +173,8 @@ |
||
| 173 | 173 | | Cast the given "real type" to the given "type". |
| 174 | 174 | | |
| 175 | 175 | */ |
| 176 | - 'type_overrides' => [ |
|
| 176 | + 'type_overrides' => [ |
|
| 177 | 177 | 'integer' => 'int', |
| 178 | 178 | 'boolean' => 'bool', |
| 179 | - ], |
|
| 179 | + ], |
|
| 180 | 180 | ]; |
@@ -30,10 +30,10 @@ |
||
| 30 | 30 | protected $middlewareGroups = [ |
| 31 | 31 | 'web' => [ |
| 32 | 32 | \Foundation\Middleware\EncryptCookies::class, |
| 33 | - \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, |
|
| 34 | - \Illuminate\Session\Middleware\StartSession::class, |
|
| 35 | - \Illuminate\View\Middleware\ShareErrorsFromSession::class, |
|
| 36 | - \Foundation\Middleware\VerifyCsrfToken::class, |
|
| 33 | + \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, |
|
| 34 | + \Illuminate\Session\Middleware\StartSession::class, |
|
| 35 | + \Illuminate\View\Middleware\ShareErrorsFromSession::class, |
|
| 36 | + \Foundation\Middleware\VerifyCsrfToken::class, |
|
| 37 | 37 | \Illuminate\Routing\Middleware\SubstituteBindings::class, |
| 38 | 38 | ], |
| 39 | 39 | |
@@ -30,13 +30,15 @@ |
||
| 30 | 30 | |
| 31 | 31 | public function find($id): ?Notification |
| 32 | 32 | { |
| 33 | - if ($id instanceof Notification) |
|
| 34 | - return $id; |
|
| 33 | + if ($id instanceof Notification) { |
|
| 34 | + return $id; |
|
| 35 | + } |
|
| 35 | 36 | |
| 36 | 37 | $notification = Notification::find($id); |
| 37 | 38 | |
| 38 | - if ($notification === null) |
|
| 39 | - throw new NotFoundHttpException(); |
|
| 39 | + if ($notification === null) { |
|
| 40 | + throw new NotFoundHttpException(); |
|
| 41 | + } |
|
| 40 | 42 | |
| 41 | 43 | return $notification; |
| 42 | 44 | } |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | |
| 44 | 44 | public function allNotificationsByUser($user) |
| 45 | 45 | { |
| 46 | - return $this->user->find($user)->notifications; |
|
| 46 | + return $this->user->find($user)->notifications; |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | public function unreadNotifcationsByUser($user) |
@@ -22,13 +22,15 @@ discard block |
||
| 22 | 22 | |
| 23 | 23 | public function find($id): ?User |
| 24 | 24 | { |
| 25 | - if ($id instanceof User) |
|
| 26 | - return $id; |
|
| 25 | + if ($id instanceof User) { |
|
| 26 | + return $id; |
|
| 27 | + } |
|
| 27 | 28 | |
| 28 | 29 | $user = User::find($id); |
| 29 | 30 | |
| 30 | - if ($user === null) |
|
| 31 | - throw new NotFoundHttpException(); |
|
| 31 | + if ($user === null) { |
|
| 32 | + throw new NotFoundHttpException(); |
|
| 33 | + } |
|
| 32 | 34 | |
| 33 | 35 | return $user; |
| 34 | 36 | } |
@@ -69,8 +71,9 @@ discard block |
||
| 69 | 71 | |
| 70 | 72 | public function setRoles($id, array $roles): void |
| 71 | 73 | { |
| 72 | - if (!in_array(Role::USER, $roles)) |
|
| 73 | - $roles[] = Role::USER; |
|
| 74 | + if (!in_array(Role::USER, $roles)) { |
|
| 75 | + $roles[] = Role::USER; |
|
| 76 | + } |
|
| 74 | 77 | $this->find($id)->syncRoles($roles); |
| 75 | 78 | } |
| 76 | 79 | } |
@@ -23,8 +23,9 @@ |
||
| 23 | 23 | |
| 24 | 24 | public function find($id): ?Machine |
| 25 | 25 | { |
| 26 | - if ($id instanceof Machine) |
|
| 27 | - return $id; |
|
| 26 | + if ($id instanceof Machine) { |
|
| 27 | + return $id; |
|
| 28 | + } |
|
| 28 | 29 | return Machine::find($id); |
| 29 | 30 | } |
| 30 | 31 | |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | public function register() |
| 18 | 18 | { |
| 19 | - //Telescope::night(); |
|
| 19 | + //Telescope::night(); |
|
| 20 | 20 | |
| 21 | 21 | Telescope::filter(function (IncomingEntry $entry) { |
| 22 | 22 | if ($this->app->environment('local')) { |
@@ -31,8 +31,9 @@ |
||
| 31 | 31 | |
| 32 | 32 | protected function getAuth0Service() |
| 33 | 33 | { |
| 34 | - if ($this->auth0 === null) |
|
| 35 | - $this->auth0 = $this->app->make(Auth0UserRepository::class); |
|
| 34 | + if ($this->auth0 === null) { |
|
| 35 | + $this->auth0 = $this->app->make(Auth0UserRepository::class); |
|
| 36 | + } |
|
| 36 | 37 | return $this->auth0; |
| 37 | 38 | } |
| 38 | 39 | |
@@ -59,8 +59,9 @@ |
||
| 59 | 59 | |
| 60 | 60 | foreach ($seeders as $seeder) { |
| 61 | 61 | $seeder = $this->laravel->make($seeder); |
| 62 | - if (!isset($seeder->seed) || $seeder->seed === false) |
|
| 63 | - $seeder->__invoke(); |
|
| 62 | + if (!isset($seeder->seed) || $seeder->seed === false) { |
|
| 63 | + $seeder->__invoke(); |
|
| 64 | + } |
|
| 64 | 65 | } |
| 65 | 66 | }); |
| 66 | 67 | |
@@ -37,8 +37,9 @@ |
||
| 37 | 37 | Artisan::call('migrate'); |
| 38 | 38 | Artisan::call('db:seed'); |
| 39 | 39 | |
| 40 | - if ($this->option('demo')) |
|
| 41 | - Artisan::call('demo:seed'); |
|
| 40 | + if ($this->option('demo')) { |
|
| 41 | + Artisan::call('demo:seed'); |
|
| 42 | + } |
|
| 42 | 43 | |
| 43 | 44 | $this->info('Database has been reset!'); |
| 44 | 45 | } |