ソースを参照

remove is_callable

andre 1 年間 前
コミット
632262a5df
1 ファイル変更2 行追加2 行削除
  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;
     }