Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function __invoke(Exception $exception, $index) |
||
20 | { |
||
21 | if ($exception instanceof RequestException) { |
||
22 | $crawlUrl = $this->crawler->getCrawlQueue()->getUrlById($index); |
||
23 | |||
24 | $this->crawler->getCrawlObservers()->crawlFailed($crawlUrl, $exception); |
||
25 | } |
||
26 | |||
27 | usleep($this->crawler->getDelayBetweenRequests()); |
||
28 | } |
||
29 | } |
||
30 |