1 | <?php |
||
18 | class WithProperty extends Variable { |
||
19 | /** |
||
20 | * @var Variable |
||
21 | */ |
||
22 | private $other; |
||
23 | |||
24 | /** |
||
25 | * @var Property |
||
26 | */ |
||
27 | private $property; |
||
28 | |||
29 | /** |
||
30 | * @var array |
||
31 | */ |
||
32 | private $arguments; |
||
33 | |||
34 | 28 | public function __construct(Variable $other, Property $property, array $arguments) { |
|
41 | |||
42 | /** |
||
43 | * @return Variable |
||
44 | */ |
||
45 | 9 | public function variable() { |
|
48 | |||
49 | /** |
||
50 | * @inheritdocs |
||
51 | */ |
||
52 | 9 | public function meaning() { |
|
56 | |||
57 | 9 | protected function argument_list() { |
|
69 | |||
70 | /** |
||
71 | * @inheritdocs |
||
72 | */ |
||
73 | 23 | public function compile() { |
|
82 | } |
||
83 |