Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
17 | protected function configure() |
||
18 | { |
||
19 | $this->setName('create') |
||
20 | ->setDescription('Grep lines from one file and write them to another') |
||
21 | ->addArgument('input', InputArgument::REQUIRED) |
||
22 | ->addArgument('expression', InputArgument::REQUIRED) |
||
23 | ->addArgument('output', InputArgument::REQUIRED) |
||
24 | ->addOption('progress', 'p', InputOption::VALUE_NONE, 'You should only use the progress if every single expression takes some time'); |
||
25 | } |
||
26 | |||
45 |