PATH:
home
/
rwabteecom
/
public_html_old
/
vendor
/
spatie
/
crawler
/
src
/
CrawlProfiles
/
Editing: CrawlAllUrls.php
<?php namespace Spatie\Crawler\CrawlProfiles; use Psr\Http\Message\UriInterface; class CrawlAllUrls extends CrawlProfile { public function shouldCrawl(UriInterface $url): bool { return true; } }
SAVE
CANCEL