| 1 | <?php |
||
| 26 | abstract class Command extends \Symfony\Component\Console\Command\Command |
||
| 27 | { |
||
| 28 | /** @var string command name */ |
||
| 29 | protected $command; |
||
| 30 | |||
| 31 | /** @var string command description */ |
||
| 32 | protected $description; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * command interface configure. |
||
| 36 | */ |
||
| 37 | public function configure() |
||
| 43 | |||
| 44 | abstract protected function arguments(); |
||
| 45 | } |
||
| 46 |