This commit is contained in:
2020-12-15 17:12:59 +08:00
parent 357093fa45
commit 875b0a43f3
+1 -1
View File
@@ -69,9 +69,9 @@ class Node extends Application
} }
$this->handler = $this->getReflect($controller, $action); $this->handler = $this->getReflect($controller, $action);
} else if ($handler != null && !is_callable($handler, true)) { } else if ($handler != null && !is_callable($handler, true)) {
var_dump($handler);
$this->_error = 'Controller is con\'t exec.'; $this->_error = 'Controller is con\'t exec.';
} else { } else {
var_dump($this);
$this->handler = $handler; $this->handler = $handler;
} }
return $this->restructure(); return $this->restructure();