| 1 | <?php |
||
| 15 | class Utils |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Get array of class properties including parents private properties |
||
| 19 | * |
||
| 20 | * @param \ReflectionClass $refClass |
||
| 21 | * |
||
| 22 | * @return array|\ReflectionProperty[] |
||
| 23 | */ |
||
| 24 | public static function getClassProperties(\ReflectionClass $refClass) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @param \ReflectionProperty $property |
||
| 45 | * |
||
| 46 | * @return array |
||
| 47 | */ |
||
| 48 | public static function getPropertyTypes(\ReflectionProperty $property) |
||
| 59 | } |