| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | protected function configureCompletion(CompletionHandler $handler) |
||
| 31 | { |
||
| 32 | $handler->addHandler(new ShellPathCompletion( |
||
| 33 | CompletionInterface::ALL_COMMANDS, |
||
| 34 | 'path', |
||
| 35 | Completion::TYPE_ARGUMENT |
||
| 36 | )); |
||
| 37 | |||
| 38 | $handler->addHandler(new ShellPathCompletion( |
||
| 39 | 'aggregate', |
||
| 40 | 'ignore-add', |
||
| 41 | Completion::TYPE_OPTION |
||
| 42 | )); |
||
| 43 | |||
| 44 | $handler->addHandler(new ShellPathCompletion( |
||
| 45 | 'aggregate', |
||
| 46 | 'ignore-remove', |
||
| 47 | Completion::TYPE_OPTION |
||
| 48 | )); |
||
| 52 |