| Total Complexity | 2 | 
| Total Lines | 24 | 
| Duplicated Lines | 0 % | 
| Coverage | 0% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 9 | class KickCommand extends Command  | 
            ||
| 10 | { | 
            ||
| 11 | protected function configure(): void  | 
            ||
| 12 |     { | 
            ||
| 13 | parent::configure();  | 
            ||
| 14 | |||
| 15 | $this  | 
            ||
| 16 |             ->setName('kick') | 
            ||
| 17 |             ->setDescription('Kicks buried tasks back to the queue') | 
            ||
| 18 |             ->addArgument('count', InputArgument::REQUIRED) | 
            ||
| 19 | ;  | 
            ||
| 20 | }  | 
            ||
| 21 | |||
| 22 | protected function execute(InputInterface $input, OutputInterface $output): void  | 
            ||
| 33 | ));  | 
            ||
| 34 | }  | 
            ||
| 36 |