| Total Complexity | 6 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 80% |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 13 | trait InheritanceReader |
||
| 14 | { |
||
| 15 | /** @return ReflectionClass[] */ |
||
| 16 | 7 | protected static function getInheritance(ReflectionClass $classReflection, bool $includeTraits = true): array |
|
| 30 | } |
||
| 31 | |||
| 32 | /** @return ReflectionClass[] */ |
||
| 33 | 7 | private static function flatMapTraits(ReflectionClass $classReflection): array |
|
| 43 |