| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | protected function configureCommand($description, $help, $name) |
||
| 13 | { |
||
| 14 | $this |
||
| 15 | ->setDefinition([ |
||
| 16 | new InputOption('config_file', 'c', InputOption::VALUE_REQUIRED, 'config file'), |
||
| 17 | new InputOption('bootstrap', 'b', InputOption::VALUE_OPTIONAL, 'bootstrap file'), |
||
| 18 | ]) |
||
| 19 | ->setDescription($description) |
||
| 20 | ->setHelp($help) |
||
| 21 | ->setName($name); |
||
| 22 | } |
||
| 23 | } |
||
| 24 |