Passed
Push — master ( 39ef33...5f4097 )
by Arman
03:00 queued 15s
created
src/Mvc/RouteDispatcher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -95,10 +95,10 @@  discard block
 block discarded – undo
95 95
 
96 96
         return $loader->loadClassFromFile(
97 97
             $controllerPath,
98
-            function () {
98
+            function() {
99 99
                 return ControllerException::controllerNotFound(current_controller());
100 100
             },
101
-            function () {
101
+            function() {
102 102
                 return ControllerException::controllerNotDefined(current_controller());
103 103
             }
104 104
         );
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      */
145 145
     private static function routeParams(): array
146 146
     {
147
-        return array_map(function ($param) {
147
+        return array_map(function($param) {
148 148
             return $param['value'];
149 149
         }, route_params());
150 150
     }
Please login to merge, or discard this patch.