1 | <?php |
||
9 | class ResetCommand extends ContainerAwareCommand |
||
10 | { |
||
11 | 1 | protected function configure() |
|
12 | { |
||
13 | $this |
||
14 | 1 | ->setName('dtc:queue:reset') |
|
15 | 1 | ->setDescription('Reset jobs with error or stalled status'); |
|
16 | 1 | } |
|
17 | |||
18 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
27 | } |
||
28 |