| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 5 | trait ReflectionTrait |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @param object|string $class |
||
| 9 | * @param string $method |
||
| 10 | * |
||
| 11 | * @return \ReflectionMethod |
||
| 12 | */ |
||
| 13 | protected function createAccessibleMethod($class, string $method) |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param object|string $class |
||
| 23 | * @param string $property |
||
| 24 | * |
||
| 25 | * @return \ReflectionProperty |
||
| 26 | */ |
||
| 27 | protected function createAccessibleProperty($class, string $property) |
||
| 35 |