HOME


Mini Shell 1.0
DIR: /home/cardxfeb/public_html/vendor/spatie/crawler/src/CrawlProfiles/
Upload File :
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;
}