Browse Source

remove is_callable

andre 1 year ago
parent
commit
632262a5df
1 changed files with 2 additions and 2 deletions
  1. 2 2
      core/App/Controllers/Router.php

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

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