@@ -9,7 +9,7 @@ |
||
| 9 | 9 | { |
| 10 | 10 | public static function set($user, $tenant) |
| 11 | 11 | { |
| 12 | - if (! $user->belongsToAdminGroup() || $tenant) { |
|
| 12 | + if (!$user->belongsToAdminGroup() || $tenant) { |
|
| 13 | 13 | self::connection(Connections::Tenant); |
| 14 | 14 | } else { |
| 15 | 15 | self::connection('mysql'); |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | Commands\DropDatabase::class, |
| 18 | 18 | Commands\DropTables::class, |
| 19 | 19 | Commands\Migrate::class, |
| 20 | - ]; |
|
| 20 | + ]; |
|
| 21 | 21 | protected function schedule(Schedule $schedule) |
| 22 | 22 | { |
| 23 | 23 | $schedule->command('telescope:prune')->daily(); |
@@ -17,7 +17,7 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | public function handle($request, Closure $next) |
| 19 | 19 | { |
| 20 | - if (! $request->user()) { |
|
| 20 | + if (!$request->user()) { |
|
| 21 | 21 | return $next($request); |
| 22 | 22 | } |
| 23 | 23 | |