Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class TruncateCommand extends Command |
||
9 | { |
||
10 | protected function configure(): void |
||
11 | { |
||
12 | parent::configure(); |
||
13 | |||
14 | $this |
||
15 | ->setName('truncate') |
||
16 | ->setDescription('Deletes all tasks from the queue') |
||
17 | ; |
||
18 | } |
||
19 | |||
20 | protected function execute(InputInterface $input, OutputInterface $output): void |
||
26 | } |
||
27 | } |
||
28 |