| 1 | <?php /** MicroCommand */ |
||
| 18 | abstract class Command implements ICommand |
||
| 19 | { |
||
| 20 | /** @var array $args arguments for command */ |
||
| 21 | public $args = []; |
||
| 22 | /** @var bool $result status of execute command */ |
||
| 23 | public $result = false; |
||
| 24 | /** @var string $message status message of execute command */ |
||
| 25 | public $message = ''; |
||
| 26 | |||
| 27 | |||
| 28 | /** |
||
| 29 | * Set arguments class |
||
| 30 | * |
||
| 31 | * @access public |
||
| 32 | * |
||
| 33 | * @param array $params configuration array |
||
| 34 | * |
||
| 35 | * @result void |
||
| 36 | */ |
||
| 37 | public function __construct(array $params = []) |
||
| 41 | } |
||
| 42 |