| 1 | <?php |
||
| 19 | class OkapiCronjobsCommand extends ContainerAwareCommand |
||
| 20 | { |
||
| 21 | const COMMAND_NAME = 'okapi:cronjobs'; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Configures the command. |
||
| 25 | * |
||
| 26 | * @return void |
||
| 27 | * |
||
| 28 | * @throws InvalidArgumentException |
||
| 29 | */ |
||
| 30 | protected function configure() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Executes the command. |
||
| 41 | * |
||
| 42 | * @param InputInterface $input |
||
| 43 | * @param OutputInterface $output |
||
| 44 | * |
||
| 45 | * @return int|null |
||
| 46 | */ |
||
| 47 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 53 | } |
||
| 54 |