ÿØÿÛ C 

ÿØÿÛ C 

<?php

namespace Spatie\Crawler\CrawlProfiles;

use Psr\Http\Message\UriInterface;

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