| 1 | <?php |
||
| 19 | class RemoveCommand extends AbstractCommand |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $library = ''; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Checks whether the command is enabled or not in the current environment. |
||
| 28 | * |
||
| 29 | * Override this to check for x or y and return false if the command can not |
||
| 30 | * run properly under the current conditions. |
||
| 31 | * |
||
| 32 | * @return bool |
||
| 33 | */ |
||
| 34 | public function isEnabled() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Sets the configurations of the specified command. |
||
| 45 | * |
||
| 46 | * @return void |
||
| 47 | */ |
||
| 48 | protected function configure() |
||
| 54 | |||
| 55 | /** |
||
| 56 | * Executes the command. |
||
| 57 | * |
||
| 58 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
| 59 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
| 60 | * @return OutputInterface |
||
| 61 | */ |
||
| 62 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 68 | } |
||
| 69 |