File "UnreachableUrl.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/laravel-medialibrary/src/MediaCollections/Exceptions/UnreachableUrl.php
File size: 244 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\MediaLibrary\MediaCollections\Exceptions;
class UnreachableUrl extends FileCannotBeAdded
{
public static function create(string $url): self
{
return new static("Url `{$url}` cannot be reached");
}
}