Conditions | 3 |
Paths | 3 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | protected function resolveClassAnnotations(\ReflectionClass $classData, ClassMetadata $metadata) |
||
44 | { |
||
45 | /** @var ClassInterface $annotation Read class annotations */ |
||
46 | foreach ($this->reader->getClassAnnotations($classData) as $annotation) { |
||
47 | if ($annotation instanceof ClassInterface) { |
||
48 | $annotation->toClassMetadata($metadata); |
||
49 | } |
||
50 | } |
||
51 | } |
||
52 | } |
||
53 |