This commit is contained in:
2022-01-09 14:33:33 +08:00
parent 5e02a79bf0
commit f46af653f2
3 changed files with 11 additions and 11 deletions
+4 -4
View File
@@ -7,7 +7,7 @@ use ReflectionAttribute;
use ReflectionClass;
use ReflectionProperty;
class AnnotationManager
class NoteManager
{
@@ -171,9 +171,9 @@ class AnnotationManager
*/
public static function resolveTarget(ReflectionClass $reflect): ?\ReflectionMethod
{
AnnotationManager::setPropertyAnnotation($reflect);
AnnotationManager::setTargetAnnotation($reflect);
AnnotationManager::setMethodAnnotation($reflect);
NoteManager::setPropertyAnnotation($reflect);
NoteManager::setTargetAnnotation($reflect);
NoteManager::setMethodAnnotation($reflect);
return $reflect->getConstructor();
}