Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | protected function execute(InputInterface $input, OutputInterface $output) |
||
44 | { |
||
45 | $output->writeln("Starting copying Zoho data into local database."); |
||
46 | foreach ($this->zohoDaos as $zohoDao) { |
||
47 | $output->writeln(sprintf("Copying data using <info>%s</info>", get_class($zohoDao))); |
||
48 | $this->zohoDatabaseCopier->copy($zohoDao); |
||
49 | } |
||
50 | $output->writeln("Zoho data successfully copied."); |
||
51 | } |
||
52 | } |
||
53 |