| 1 | <?php |
||
| 13 | class ReflectionMethodWrapper |
||
| 14 | { |
||
| 15 | private $reflectionMethod; |
||
| 16 | |||
| 17 | 104 | public function __construct(ReflectionMethod $reflectionMethod) |
|
| 21 | |||
| 22 | 102 | public function getParameterByName(string $name): ReflectionParameter |
|
| 36 | |||
| 37 | 100 | public function getNonBuiltInTypeForParameter(string $name): string |
|
| 53 | |||
| 54 | 102 | public function getFriendlyName() |
|
| 62 | } |
||
| 63 |