1 | <?php |
||
11 | final class Argument implements \Serializable |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | private $index; |
||
17 | |||
18 | /** |
||
19 | * @var bool |
||
20 | */ |
||
21 | private $isDefaultAvailable; |
||
22 | |||
23 | /** |
||
24 | * @var mixed |
||
25 | */ |
||
26 | private $default; |
||
27 | |||
28 | /** |
||
29 | * @var string |
||
30 | */ |
||
31 | private $meta; |
||
32 | |||
33 | /** |
||
34 | * @var \ReflectionParameter |
||
35 | */ |
||
36 | private $reflection; |
||
37 | |||
38 | 68 | public function __construct(\ReflectionParameter $parameter, string $name) |
|
39 | { |
||
40 | 68 | $type = $this->getType($parameter); |
|
41 | 68 | $isOptional = $parameter->isOptional(); |
|
42 | 68 | $this->isDefaultAvailable = $parameter->isDefaultValueAvailable() || $isOptional; |
|
43 | 68 | if ($isOptional) { |
|
44 | 12 | $this->default = null; |
|
45 | } |
||
46 | 68 | $this->setDefaultValue($parameter); |
|
47 | 68 | $this->index = $type . '-' . $name; |
|
48 | 68 | $this->reflection = $parameter; |
|
49 | 68 | $this->meta = sprintf( |
|
50 | 68 | "dependency '%s' with name '%s' used in %s:%d ($%s)", |
|
51 | 68 | $type, |
|
52 | 68 | $name, |
|
53 | 68 | $this->reflection->getDeclaringFunction()->getFileName(), |
|
54 | 68 | $this->reflection->getDeclaringFunction()->getStartLine(), |
|
55 | 68 | $parameter->getName() |
|
|
|||
56 | ); |
||
57 | 68 | } |
|
58 | |||
59 | /** |
||
60 | * @return string |
||
61 | */ |
||
62 | 41 | public function __toString() |
|
66 | |||
67 | /** |
||
68 | * Return reflection |
||
69 | */ |
||
70 | 39 | public function get() : \ReflectionParameter |
|
74 | |||
75 | /** |
||
76 | * @return bool |
||
77 | */ |
||
78 | 13 | public function isDefaultAvailable() : bool |
|
82 | |||
83 | /** |
||
84 | * @return mixed |
||
85 | */ |
||
86 | 7 | public function getDefaultValue() |
|
90 | |||
91 | 7 | public function getMeta() : string |
|
95 | |||
96 | 3 | public function serialize() : string |
|
112 | |||
113 | 4 | public function unserialize($serialized) |
|
123 | |||
124 | 68 | private function setDefaultValue(\ReflectionParameter $parameter) |
|
136 | |||
137 | 68 | private function getType(\ReflectionParameter $parameter) : string |
|
146 | } |
||
147 |