PATH:
home
/
cardxfeb
/
public_html
/
vendor
/
spatie
/
laravel-medialibrary
/
src
/
MediaCollections
/
Exceptions
/
Editing: FileDoesNotExist.php
<?php namespace Spatie\MediaLibrary\MediaCollections\Exceptions; class FileDoesNotExist extends FileCannotBeAdded { public static function create(string $path): self { return new static("File `{$path}` does not exist"); } }
SAVE
CANCEL