| 1 | <?php |
||
| 13 | class RemoveCommand extends Command |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Command name |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | const NAME = 'remove'; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * {@inheritdoc} |
||
| 23 | */ |
||
| 24 | public function configure() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | public function execute(InputInterface $input, OutputInterface $output) |
||
| 43 | } |
||
| 44 |