Passed
Push — master ( 2a5202...227a54 )
by Curtis
19:09 queued 12:59
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/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.