Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
51 | 12 | protected function configure() |
|
52 | { |
||
53 | 12 | $this->setDescription('Run pending tasks') |
|
54 | 12 | ->setHelp(<<<'EOT' |
|
55 | The <info>%command.name%</info> command runs the pending task-executions. During the execution the status |
||
56 | of the executions will be updated. |
||
57 | |||
58 | $ %command.full_name% |
||
59 | EOT |
||
60 | 12 | ); |
|
61 | 12 | } |
|
62 | |||
72 |