From 3b7e6f992fef0a5296fae59d5ff1fcee9942f58a Mon Sep 17 00:00:00 2001 From: whwyy Date: Wed, 31 Dec 2025 01:10:27 +0800 Subject: [PATCH] eee --- Scanner.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scanner.php b/Scanner.php index 58ac81b..4f0d35a 100644 --- a/Scanner.php +++ b/Scanner.php @@ -352,6 +352,7 @@ class Scanner extends Component */ private function analyzeClassMethods(ReflectionClass $reflect, string $class): void { + var_dump($reflect->getName()); foreach ($reflect->getMethods(ReflectionMethod::IS_PUBLIC) as $method) { // 跳过静态方法和继承的方法 if ($method->isStatic() || $method->getDeclaringClass()->getName() !== $class) { @@ -367,7 +368,6 @@ class Scanner extends Component */ private function processMethodAttributes(ReflectionMethod $method, string $class): void { - var_dump($class); foreach ($method->getAttributes() as $attribute) { $attributeName = $attribute->getName();