for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\MediaLibrary\Exceptions\FileCannotBeAdded;
use Spatie\MediaLibrary\Helpers\File;
use Spatie\MediaLibrary\Exceptions\FileCannotBeAdded;
class RequestDoesNotHaveFile extends FileCannotBeAdded
{
public static function create($key)
return new static("The current request does not have a file in a key named `{$key}`");
}