| Conditions | 1 |
| Paths | 1 |
| Total Lines | 21 |
| Code Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 29 | protected function configureCompletion(CompletionHandler $handler) |
||
| 30 | { |
||
| 31 | $handler->addHandler(new ShellPathCompletion( |
||
| 32 | 'sync', |
||
| 33 | 'project-path', |
||
| 34 | Completion::TYPE_ARGUMENT |
||
| 35 | )); |
||
| 36 | $handler->addHandler(new ShellPathCompletion( |
||
| 37 | 'bc', |
||
| 38 | 'source-project-path', |
||
| 39 | Completion::TYPE_ARGUMENT |
||
| 40 | )); |
||
| 41 | $handler->addHandler(new ShellPathCompletion( |
||
| 42 | 'bc', |
||
| 43 | 'target-project-path', |
||
| 44 | Completion::TYPE_ARGUMENT |
||
| 45 | )); |
||
| 46 | $handler->addHandler(new ShellPathCompletion( |
||
| 47 | 'report', |
||
| 48 | 'project-path', |
||
| 49 | Completion::TYPE_ARGUMENT |
||
| 50 | )); |
||
| 54 |