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