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
:
InvalidUrl.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\MediaLibrary\MediaCollections\Exceptions; use Exception; class InvalidUrl extends Exception { public static function doesNotStartWithProtocol(string $url) { return new static("Could not add `{$url}` because it does not start with either `http://` or `https://`"); } }