for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Crawler;
class EmptyCrawlObserver implements CrawlObserver
{
/**
* Called when the crawler will crawl the url.
*
* @param \Spatie\Crawler\Url $url
* @return void
*/
public function willCrawl(Url $url)
}
* Called when the crawler has crawled the given url.
* @param \Psr\Http\Message\ResponseInterface|null $response
* @param \Spatie\Crawler\Url $foundOnUrl
public function hasBeenCrawled(Url $url, $response, Url $foundOnUrl = null)
* Called when the crawl has ended.
public function finishedCrawling()