Item Type
Item Name
Search file in folder and subfolders...
<?php namespace Spatie\Crawler; use Psr\Http\Message\UriInterface; class CrawlAllUrls extends CrawlProfile { public function shouldCrawl(UriInterface $url): bool { return true; } }