• File: CrawlAllUrls.php
  • Full Path: /home/masbinta/public_html/core/vendor/spatie/crawler/src/CrawlAllUrls.php
  • File size: 204 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Spatie\Crawler;

use Psr\Http\Message\UriInterface;

class CrawlAllUrls extends CrawlProfile
{
    public function shouldCrawl(UriInterface $url): bool
    {
        return true;
    }
}