Skip to content
This repository was archived by the owner on Jan 24, 2024. It is now read-only.

Latest commit

 

History

History
27 lines (20 loc) · 919 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 919 Bytes

Automatic Annotation Discovery

Latest Stable Version Build Status Codecov

Package is deprecated. Please, use spiral/attributes instead

Installation

Service does not require any bootloader and can be enabled in spiral application with simple composer dependency.

$ composer require spiral/annotations 

Example

To find all annotated classes:

use Spiral\Annotations;

$locator = new Annotations\AnnotationLocator($classLocator); 

foreach($locator->findClasses(MyAnnotation::class) as $class) {
    dump($class->getClass());
    dump($class->getAnnotation());
}