File "RequestDoesNotHaveFile.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/spatie/laravel-medialibrary/src/MediaCollections/Exceptions/RequestDoesNotHaveFile.php
File size: 286 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\MediaLibrary\MediaCollections\Exceptions;
class RequestDoesNotHaveFile extends FileCannotBeAdded
{
public static function create(string $key): self
{
return new static("The current request does not have a file in a key named `{$key}`");
}
}