Total Complexity | 4 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
28 | abstract class AbstractAnnotation extends AbstractObject |
||
29 | { |
||
30 | |||
31 | /** |
||
32 | * Recursively collects all annotations referenced by this object or its children |
||
33 | * |
||
34 | * @param SimpleAnnotationReader $annotationReader |
||
35 | * |
||
36 | * @return ComponentObjectInterface[] |
||
37 | */ |
||
38 | public function getReferencedObjects(SimpleAnnotationReader $annotationReader) : array |
||
59 |