Completed
Push — master ( 8efd5e...9e77ef )
by Julien
39:33
created
app/TournamentLevel.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 static function getAllPlucked()
19 19
     {
20
-        return Cache::remember('level_pluck', config('constants.GRADE_MINUTES'), function () {
20
+        return Cache::remember('level_pluck', config('constants.GRADE_MINUTES'), function() {
21 21
             return static::pluck('name', 'id');
22 22
         });
23 23
     }
Please login to merge, or discard this patch.
app/Exceptions/InvitationNeededException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
                 'quote' => trans('msg.invitation_needed'),
14 14
                 'author' => "Admin",
15 15
                 'source' => "",
16
-                'sentryID' => $this->sentryID,]
16
+                'sentryID' => $this->sentryID, ]
17 17
         );
18 18
     }
19 19
 }
Please login to merge, or discard this patch.
app/Exceptions/NotOwningAssociationException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
                 'quote' => trans('msg.you_dont_own_association'),
14 14
                 'author' => trans('msg.please_ask_federationPresident'),
15 15
                 'source' => "",
16
-                'sentryID' => $this->sentryID,]
16
+                'sentryID' => $this->sentryID, ]
17 17
         );
18 18
     }
19 19
 
Please login to merge, or discard this patch.
app/Exceptions/InvitationNotActiveException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
                 'quote' => trans('msg.invitation_used'),
13 13
                 'author' => "Admin",
14 14
                 'source' => "",
15
-                'sentryID' => $this->sentryID,]
15
+                'sentryID' => $this->sentryID, ]
16 16
         );
17 17
     }
18 18
 
Please login to merge, or discard this patch.
app/Exceptions/NotOwningClubException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
                 'quote' => trans('msg.you_dont_own_club'),
14 14
                 'author' => trans('msg.please_ask_associationPresident'),
15 15
                 'source' => "",
16
-                'sentryID' => $this->sentryID,]
16
+                'sentryID' => $this->sentryID, ]
17 17
         );
18 18
     }
19 19
 
Please login to merge, or discard this patch.
app/Exceptions/Handler.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -122,8 +122,9 @@
 block discarded – undo
122 122
                 break;
123 123
         }
124 124
 
125
-        if ($exception instanceof MaintenanceModeException)
126
-            return response()->view('errors.503');
125
+        if ($exception instanceof MaintenanceModeException) {
126
+                    return response()->view('errors.503');
127
+        }
127 128
 
128 129
 
129 130
         return response()->view('errors.general',
Please login to merge, or discard this patch.
app/Exceptions/NotOwningFederationException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
                 'quote' => trans('msg.you_dont_own_federation'),
14 14
                 'author' => trans('msg.please_ask_superadmin'),
15 15
                 'source' => "",
16
-                'sentryID' => $this->sentryID,]
16
+                'sentryID' => $this->sentryID, ]
17 17
         );
18 18
     }
19 19
 
Please login to merge, or discard this patch.
app/Providers/BroadcastServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,8 @@
 block discarded – undo
19 19
         /*
20 20
          * Authenticate the user's personal channel...
21 21
          */
22
-        Broadcast::channel('App.User.*', function ($user, $userId) {
23
-            return (int)$user->id === (int)$userId;
22
+        Broadcast::channel('App.User.*', function($user, $userId) {
23
+            return (int) $user->id === (int) $userId;
24 24
         });
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
app/Providers/RouteServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         Route::group([
58 58
             'middleware' => 'web',
59 59
             'namespace' => $this->namespace,
60
-        ], function ($router) {
60
+        ], function($router) {
61 61
             require base_path('routes/web.php');
62 62
         });
63 63
     }
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
             'prefix' => 'api',
79 79
             'as' => 'api.',
80 80
 
81
-        ], function ($router) {
81
+        ], function($router) {
82 82
             require base_path('routes/api.php');
83 83
         });
84 84
     }
Please login to merge, or discard this patch.