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