%PDF- %PDF-
Direktori : /var/www/html/hr/api/vendor/spatie/laravel-medialibrary/src/Exceptions/ |
Current File : /var/www/html/hr/api/vendor/spatie/laravel-medialibrary/src/Exceptions/InvalidPathGenerator.php |
<?php namespace Spatie\MediaLibrary\Exceptions; use Exception; class InvalidPathGenerator extends Exception { public static function doesntExist(string $class) { return new static("Class {$class} doesn't exist"); } public static function isntAPathGenerator(string $class) { return new static("Class {$class} must implement `Spatie\\MediaLibrary\\PathGenerator\\PathGenerator`"); } }