@@ -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 | ]; |
@@ -16,7 +16,7 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | protected $commands = [ |
| 18 | 18 | BootstrapCacheCommand::class, |
| 19 | - // SeedCommand::class |
|
| 19 | + // SeedCommand::class |
|
| 20 | 20 | ]; |
| 21 | 21 | |
| 22 | 22 | /** |
@@ -62,7 +62,9 @@ |
||
| 62 | 62 | //Get the user info of the user logged in (probably in session) |
| 63 | 63 | $user = \App::make('auth0')->getUser(); |
| 64 | 64 | |
| 65 | - if ($user === null) return null; |
|
| 65 | + if ($user === null) { |
|
| 66 | + return null; |
|
| 67 | + } |
|
| 66 | 68 | |
| 67 | 69 | // build the user |
| 68 | 70 | $user = $this->getUserByUserInfo($user); |