| 1 | <?php |
||
| 30 | class FileCommand extends DownloadCommand |
||
| 31 | { |
||
| 32 | const NAME = 'file'; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Configure command |
||
| 36 | * |
||
| 37 | * @return void |
||
| 38 | */ |
||
| 39 | protected function configure() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Execute command |
||
| 47 | * |
||
| 48 | * @param InputInterface $input |
||
| 49 | * @param OutputInterface $output |
||
| 50 | * |
||
| 51 | * @return void |
||
| 52 | */ |
||
| 53 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 58 | } |
||
| 59 |