PATH:
home
/
cardxfeb
/
public_html
/
vendor
/
spatie
/
laravel-medialibrary
/
src
/
MediaCollections
/
Exceptions
/
Editing: InvalidPathGenerator.php
<?php namespace Spatie\MediaLibrary\MediaCollections\Exceptions; use Exception; use Spatie\MediaLibrary\Support\PathGenerator\PathGenerator; class InvalidPathGenerator extends Exception { public static function doesntExist(string $class): self { return new static("Path generator class `{$class}` doesn't exist"); } public static function doesNotImplementPathGenerator(string $class): self { $pathGeneratorClass = PathGenerator::class; return new static("Path generator class `{$class}` must implement `$pathGeneratorClass}`"); } }
SAVE
CANCEL