| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 44 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 45 | { |
||
| 46 | $wc_path = $this->getWorkingCopyPath(); |
||
| 47 | |||
| 48 | $this->io->writeln('Cleaning up working copy ... '); |
||
| 49 | $command = $this->repositoryConnector->getCommand('cleanup', array($wc_path)); |
||
| 50 | $command->runLive(array( |
||
| 51 | $wc_path => '.', |
||
| 52 | )); |
||
| 53 | $this->io->writeln('<info>Done</info>'); |
||
| 54 | } |
||
| 67 |