Passed
Push — master ( 46a435...4cae64 )
by Curtis
12:06 queued 07:19
created
app/Service/MixedConnection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
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');
Please login to merge, or discard this patch.
app/Console/Kernel.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
app/Http/Middleware/Multitenant.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.