| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function handle(UrlGenerator $urlGenerator, Destination $destination) |
||
| 15 | { |
||
| 16 | $entry = $urlGenerator->to('/'); |
||
| 17 | |||
| 18 | (new Crawler(new LocalClient())) |
||
| 19 | ->setCrawlObserver(new Observer($destination, $entry)) |
||
| 20 | ->setCrawlProfile(new CrawlInternalUrls($entry)) |
||
| 21 | ->startCrawling($entry); |
||
| 22 | } |
||
| 23 | } |
||
| 24 |