| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 8 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php |
||
| 23 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 24 | { |
||
| 25 | parent::execute($input, $output); |
||
| 26 | |||
| 27 | $this->output->writeln("<info>Looking for vcs operations</info>\n"); |
||
| 28 | |||
| 29 | $this->app['sources.path'] = $input->getArgument('sourcePath'); |
||
| 30 | |||
| 31 | $vcs = $this->app['vcsHandler']($this->app['vcs']); |
||
| 32 | $vcs->execute($this->app['sources.path']); |
||
| 33 | } |
||
| 34 | } |