This commit is contained in:
xl
2024-08-29 12:00:10 +08:00
parent 6efd221585
commit 1795b59b88
4 changed files with 37 additions and 25 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ class ControllerInterpreter
$reflectionMethod = $reflectionClass->getMethod($reflectionMethod);
}
return new Handler([$class, $reflectionMethod->getName()], $reflectionMethod);
return new Handler([$class::class, $reflectionMethod->getName()], $reflectionMethod);
}
}