1 | <?php |
||
18 | abstract class AbstractInvocation extends AbstractJoinpoint implements Invocation |
||
19 | { |
||
20 | /** |
||
21 | * Arguments for invocation |
||
22 | * |
||
23 | * @var array |
||
24 | */ |
||
25 | protected $arguments = []; |
||
26 | |||
27 | /** |
||
28 | * Get the arguments as an array object. |
||
29 | * It is possible to change element values within this array to change the arguments |
||
30 | * |
||
31 | * @return array the arguments of the invocation |
||
32 | */ |
||
33 | public function getArguments() |
||
37 | |||
38 | /** |
||
39 | * Sets the arguments for current invocation |
||
40 | * |
||
41 | * @param array $arguments New list of arguments |
||
42 | */ |
||
43 | public function setArguments(array $arguments) |
||
47 | } |
||
48 |