| 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 | /** @var IContainer $container Container config */ |
||
| 27 | protected $container; |
||
| 28 | |||
| 29 | |||
| 30 | /** |
||
| 31 | * Set arguments class |
||
| 32 | * |
||
| 33 | * @access public |
||
| 34 | * |
||
| 35 | * @param array $params configuration array |
||
| 36 | * |
||
| 37 | * @result void |
||
| 38 | */ |
||
| 39 | public function __construct(array $params) |
||
| 47 | } |
||
| 48 |