Quellcode durchsuchen

remove is_callable

andre vor 1 Jahr
Ursprung
Commit
632262a5df
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      core/App/Controllers/Router.php

+ 2 - 2
core/App/Controllers/Router.php

@@ -93,10 +93,10 @@ class Router
             return false;
         }
 
-        if (!is_callable([$this->controllerClass, $this->controllerMethod]))
+/*        if (!is_callable([$this->controllerClass, $this->controllerMethod]))
         {
             return false;
-        }
+        }*/
 
         return true;
     }