for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Crawler\Exception;
use Exception;
use Psr\Http\Message\UriInterface;
use Spatie\Crawler\CrawlUrl;
class InvalidUrl extends Exception
{
public static function unexpectedType($url)
$crawlUrlClass = CrawlUrl::class;
$uriInterfaceClass = UriInterface::class;
$givenUrlClass = is_object($url) ? get_class($url) : gettype($url);
return new static("You passed an invalid url of type `{$givenUrlClass}`. This should be either a {$crawlUrlClass} or `{$uriInterfaceClass}`");
}