| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | protected function configure(): void |
||
| 16 | { |
||
| 17 | $this->setName('check'); |
||
| 18 | $this->setDescription('Check methods return types'); |
||
| 19 | $this->addArgument('path', InputArgument::OPTIONAL, 'The path to check', '.'); |
||
| 20 | $this->setHelp( |
||
| 21 | 'This command allows you to check if all the methods ' . |
||
| 22 | 'of your application have an explicit return type' |
||
| 23 | ); |
||
| 24 | } |
||
| 25 | |||
| 39 |