This commit is contained in:
2021-04-19 16:35:41 +08:00
parent 1207e17cff
commit 087cba00b0
2 changed files with 0 additions and 3 deletions
-2
View File
@@ -233,7 +233,6 @@ class Loader extends BaseObject
$path = '/' . trim($path, '/'); $path = '/' . trim($path, '/');
foreach ($this->_directory as $key => $_path) { foreach ($this->_directory as $key => $_path) {
$key = '/' . trim($key, '/'); $key = '/' . trim($key, '/');
var_dump($key . '->' . $path);
if (!str_starts_with($key, $path)) { if (!str_starts_with($key, $path)) {
continue; continue;
} }
@@ -395,7 +394,6 @@ class Loader extends BaseObject
return; return;
} }
foreach ($classes as $className) { foreach ($classes as $className) {
var_dump($className);
$annotations = $this->_classes[$className] ?? null; $annotations = $this->_classes[$className] ?? null;
if ($annotations === null) { if ($annotations === null) {
continue; continue;
-1
View File
@@ -561,7 +561,6 @@ class Node extends HttpService
private function runWith(): mixed private function runWith(): mixed
{ {
$requestParams = func_get_args(); $requestParams = func_get_args();
var_dump(...$requestParams);
if (count($requestParams) > 0) { if (count($requestParams) > 0) {
return call_user_func($this->callback, ...$requestParams); return call_user_func($this->callback, ...$requestParams);
} else { } else {