| 1 | <?php |
||
| 14 | final class InjectionPoint implements InjectionPointInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var \ReflectionParameter |
||
| 18 | */ |
||
| 19 | private $parameter; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var Reader |
||
| 23 | */ |
||
| 24 | private $reader; |
||
| 25 | |||
| 26 | 42 | public function __construct(\ReflectionParameter $parameter, Reader $reader) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | 2 | public function getParameter() : \ReflectionParameter |
|
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | 3 | public function getMethod() : \ReflectionMethod |
|
| 53 | |||
| 54 | /** |
||
| 55 | * {@inheritdoc} |
||
| 56 | */ |
||
| 57 | 1 | public function getClass() : \ReflectionClass |
|
| 65 | |||
| 66 | /** |
||
| 67 | * {@inheritdoc} |
||
| 68 | */ |
||
| 69 | 2 | public function getQualifiers() : array |
|
| 85 | } |
||
| 86 |