1 | <?php |
||
10 | final class InjectionPoint implements InjectionPointInterface, \Serializable |
||
11 | { |
||
12 | /** |
||
13 | * @var \ReflectionParameter |
||
14 | */ |
||
15 | private $parameter; |
||
16 | |||
17 | /** |
||
18 | * @var Reader |
||
19 | */ |
||
20 | private $reader; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private $pClass; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | private $pFunction; |
||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | */ |
||
35 | private $pName; |
||
36 | |||
37 | public function __construct(\ReflectionParameter $parameter, Reader $reader) |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | public function getParameter() : \ReflectionParameter |
||
54 | |||
55 | /** |
||
56 | * {@inheritdoc} |
||
57 | */ |
||
58 | public function getMethod() : \ReflectionMethod |
||
68 | |||
69 | /** |
||
70 | * {@inheritdoc} |
||
71 | */ |
||
72 | public function getClass() : \ReflectionClass |
||
81 | |||
82 | /** |
||
83 | * {@inheritdoc} |
||
84 | */ |
||
85 | public function getQualifiers() : array |
||
101 | |||
102 | public function serialize() : string |
||
106 | |||
107 | public function unserialize($serialized) |
||
111 | } |
||
112 |