diff --git a/src/Annotate/Controller.php b/src/Annotate/Controller.php deleted file mode 100644 index 90cba01..0000000 --- a/src/Annotate/Controller.php +++ /dev/null @@ -1,31 +0,0 @@ -getReflectionClass($object::class); - foreach ($reflection->getMethods() as $method) { - $attributes = $method->getAttributes(); - foreach ($attributes as $attribute) { - if (!class_exists($attribute->getName())) { - continue; - } - $attribute->newInstance()->dispatch($object, $method->getName()); - } - } - - } - -}