| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2.0116 |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | 1 | protected function execute(InputInterface $input, OutputInterface $output) |
|
| 42 | { |
||
| 43 | 1 | $crawler = $this->getContainer()->get('mediamonks_crawler.crawler'); |
|
| 44 | 1 | $crawler->setLimit((int)$input->getOption(self::OPTION_LIMIT)); |
|
| 45 | 1 | foreach ($crawler->crawl($input->getArgument('url')) as $page) { |
|
| 46 | $this->handlePage($page); |
||
| 47 | 1 | } |
|
| 48 | 1 | } |
|
| 49 | |||
| 58 |