Completed
Push — master ( beba29...2cba6a )
by Sinnarasa
01:46
created
src/Routing/Middleware.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
     {
187 187
         $callback = explode('@', $callback);
188 188
         $method = isset($callback[1]) ? $callback[1] : 'handle';
189
-        if(class_exists($callback[0])) {
189
+        if (class_exists($callback[0])) {
190 190
             $instance = call_user_func($this->router->getConfig()['di'], $callback[0]);
191 191
             if (method_exists($instance, $method)) {
192 192
                 $reflectionMethod = new ReflectionMethod($instance, $method);
Please login to merge, or discard this patch.