| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | protected function configure() |
||
| 14 | { |
||
| 15 | $this |
||
| 16 | ->setName('test') |
||
| 17 | ->setDescription('test someone') |
||
| 18 | ->addArgument( |
||
| 19 | 'name', |
||
| 20 | InputArgument::OPTIONAL, |
||
| 21 | 'Who do you want to greet?' |
||
| 22 | ) |
||
| 23 | ->addOption( |
||
| 24 | 'yell', |
||
| 25 | null, |
||
| 26 | InputOption::VALUE_NONE, |
||
| 27 | 'If set, the task will yell in uppercase letters' |
||
| 28 | ); |
||
| 47 | } |