Test Failed
Push — master ( 787e81...107e29 )
by Iman
03:00
created
src/RouteAuthorizer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,9 +9,9 @@
 block discarded – undo
9 9
 {
10 10
     public function authorizeMatchedRoutes()
11 11
     {
12
-        Route::matched(function (RouteMatched $eventObj) {
12
+        Route::matched(function(RouteMatched $eventObj) {
13 13
             $route = $eventObj->route;
14
-            if($eventObj->request->method() === 'GET')
14
+            if ($eventObj->request->method() === 'GET')
15 15
                 $this->authorizeUrls($route->uri);
16 16
             $this->authorizeRouteNames($route->getName());
17 17
             $this->authorizeRouteActions($route->getActionName());
Please login to merge, or discard this patch.