ok
Direktori : /home2/selectio/public_html/a1tex.in/vendor/spatie/crawler/src/CrawlProfiles/ |
Current File : /home2/selectio/public_html/a1tex.in/vendor/spatie/crawler/src/CrawlProfiles/CrawlProfile.php |
<?php namespace Spatie\Crawler\CrawlProfiles; use Psr\Http\Message\UriInterface; abstract class CrawlProfile { /** * Determine if the given url should be crawled. * * @param \Psr\Http\Message\UriInterface $url * * @return bool */ abstract public function shouldCrawl(UriInterface $url): bool; }