| 1 | <?php |
||
| 9 | class SyncCommand extends BaseCommand |
||
| 10 | { |
||
| 11 | const COMMAND_NAME = 'labby:sync'; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Configure command. |
||
| 15 | */ |
||
| 16 | 10 | protected function configure() |
|
| 23 | |||
| 24 | /** |
||
| 25 | * @param InputInterface $input |
||
| 26 | * @param OutputInterface $output |
||
| 27 | * |
||
| 28 | * @throws \Exception |
||
| 29 | * |
||
| 30 | * @return int|null|void |
||
| 31 | */ |
||
| 32 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 49 | } |
||
| 50 |