| 1 | <?php |
||
| 15 | abstract class AbstractCommand extends AbstractEntityEvent |
||
| 16 | { |
||
| 17 | protected $args = ''; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Returns arguments string for the command |
||
| 21 | * |
||
| 22 | * @return string |
||
| 23 | */ |
||
| 24 | public function getArgs() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Sets argument string for the command |
||
| 31 | * |
||
| 32 | * @param string $args Arguments string |
||
| 33 | */ |
||
| 34 | public function setArgs($args) |
||
| 38 | } |
||
| 39 |