Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | final class ReflectionPropertySetFactory |
||
23 | { |
||
24 | /** |
||
25 | * Get a flat list of all properties in class and parent classes |
||
26 | * |
||
27 | * @param ReflectionClass $reflectionClass |
||
28 | * @return ReflectionPropertySet |
||
29 | */ |
||
30 | 5 | public function create(ReflectionClass $reflectionClass): ReflectionPropertySet |
|
52 |