| 1 | <?php declare(strict_types=1); |
||
| 16 | class AbstractAnnotationAnalyzer |
||
| 17 | {
|
||
| 18 | /** @var AnnotationReader */ |
||
| 19 | protected $reader; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * AbstractAnnotationAnalyzer constructor. |
||
| 23 | * |
||
| 24 | * @param AnnotationReader $annotationReader |
||
| 25 | */ |
||
| 26 | 2 | public function __construct(AnnotationReader $annotationReader) |
|
| 30 | } |
||
| 31 |