File "InvalidUrl.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/laravel-medialibrary/src/MediaCollections/Exceptions/InvalidUrl.php
File size: 314 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\MediaLibrary\MediaCollections\Exceptions;
use Exception;
class InvalidUrl extends Exception
{
public static function doesNotStartWithProtocol(string $url)
{
return new static("Could not add `{$url}` because it does not start with either `http://` or `https://`");
}
}