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