| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | protected function configure() |
||
| 25 | { |
||
| 26 | $this |
||
| 27 | ->setName('cleanup') |
||
| 28 | ->setDescription( |
||
| 29 | 'Recursively clean up the working copy, removing locks, resuming unfinished operations, etc.' |
||
| 30 | ) |
||
| 31 | ->addArgument( |
||
| 32 | 'path', |
||
| 33 | InputArgument::OPTIONAL, |
||
| 34 | 'Working copy path', |
||
| 35 | '.' |
||
| 36 | ); |
||
| 37 | |||
| 38 | parent::configure(); |
||
| 39 | } |
||
| 67 |