Total Complexity | 6 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class Reflection |
||
23 | { |
||
24 | // Public static Methods |
||
25 | // ========================================================================= |
||
26 | /** |
||
27 | * @param object $object |
||
28 | * @param string $propertyName |
||
29 | * |
||
30 | * @return ReflectionProperty |
||
31 | * @throws ReflectionException |
||
32 | */ |
||
33 | public static function getReflectionProperty(object $object, string $propertyName): ReflectionProperty |
||
61 |