Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 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 |