| 1 | <?php |
||
| 5 | class MethodCall |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | public $method; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | public $arguments; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Create a new MethodCall instance. |
||
| 19 | * |
||
| 20 | * @param string $method |
||
| 21 | * @param array $arguments |
||
| 22 | */ |
||
| 23 | public function __construct($method, array $arguments = []) |
||
| 28 | } |