| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 46 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 47 | { |
||
| 48 | $packages = $this->em->getRepository(Package::class)->findAll(); |
||
| 49 | |||
| 50 | /** @var Package $package */ |
||
| 51 | foreach ($packages as $package) { |
||
| 52 | $output->writeln("Update ".$package->getPackageName()." info"); |
||
| 53 | $this->version->save($package->getGuid()); |
||
| 54 | } |
||
| 55 | |||
| 56 | return 0; |
||
| 57 | } |
||
| 59 |