Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
spatie
/
laravel-medialibrary
/
src
/
MediaCollections
/
Exceptions
:
FileIsTooBig.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\MediaLibrary\MediaCollections\Exceptions; use Spatie\MediaLibrary\Support\File; class FileIsTooBig extends FileCannotBeAdded { public static function create(string $path, int $size = null): self { $fileSize = File::getHumanReadableSize($size ?: filesize($path)); $maxFileSize = File::getHumanReadableSize(config('media-library.max_file_size')); return new static("File `{$path}` has a size of {$fileSize} which is greater than the maximum allowed {$maxFileSize}"); } }