| 1 | <?php |
||
| 14 | abstract class BaseAction implements ActionInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $arguments; |
||
| 20 | |||
| 21 | 14 | public function __construct() |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @inheritdoc |
||
| 28 | */ |
||
| 29 | 11 | public function getArguments() : array |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @param array $arguments |
||
| 36 | * |
||
| 37 | * @return $this |
||
| 38 | */ |
||
| 39 | 3 | public function setArguments(array $arguments) : self |
|
| 45 | |||
| 46 | 8 | public function parseArguments(ExecutorInterface $executor) : array |
|
| 62 | } |
||
| 63 |