1 | <?php |
||
19 | final class ArgumentCall implements ArgumentInterface |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * @var ArgumentInterface |
||
24 | */ |
||
25 | private $callee; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | private $methodName; |
||
31 | |||
32 | /** |
||
33 | * @var array<ArgumentInterface> |
||
34 | */ |
||
35 | private $arguments = array(); |
||
36 | |||
37 | public function __construct( |
||
48 | |||
49 | public function getValue() |
||
66 | |||
67 | } |
||
68 |