/home/techb158/ileadtechnology.com/vendor/spatie/crawler/src
NameSizeModeActions
CrawlQueue/-0755rm
Exception/-0755rm
Handlers/-0755rm
CrawlAllUrls.php2040644editdlrm
Crawler.php134840644editdlrm
CrawlerRobots.php12420644editdlrm
CrawlInternalUrls.php4930644editdlrm
CrawlObserver.php13330644editdlrm
CrawlObserverCollection.php21440644editdlrm
CrawlProfile.php3220644editdlrm
CrawlSubdomains.php6580644editdlrm
CrawlUrl.php8580644editdlrm
LinkAdder.php37230644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/spatie/crawler/src/CrawlerRobots.php (1242B)
robotsHeaders = RobotsHeaders::create($headers); $this->robotsMeta = RobotsMeta::create($body); $this->mustRespectRobots = $mustRespectRobots; } public function mayIndex(): bool { if (! $this->mustRespectRobots) { return true; } if (! $this->robotsHeaders->mayIndex()) { return false; } if (! $this->robotsMeta->mayIndex()) { return false; } return true; } public function mayFollow(): bool { if (! $this->mustRespectRobots) { return true; } if (! $this->robotsHeaders->mayFollow()) { return false; } if (! $this->robotsMeta->mayFollow()) { return false; } return true; } }