| DIR: /home/cardxfeb/public_html/vendor/spatie/crawler/src/CrawlProfiles/ |
| Current File : //home/cardxfeb/public_html/vendor/spatie/crawler/src/CrawlProfiles/CrawlProfile.php |
<?php
namespace Spatie\Crawler\CrawlProfiles;
use Psr\Http\Message\UriInterface;
abstract class CrawlProfile
{
abstract public function shouldCrawl(UriInterface $url): bool;
}
|