Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
tipuloidea
/
back
/
vendor
/
spatie
/
laravel-data
/
src
/
Exceptions
:
CannotCreateAbstractClass.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\LaravelData\Exceptions; use Exception; class CannotCreateAbstractClass extends Exception { public static function morphClassWasNotResolved( string $originalClass, ): self { return new self("No morph data class found for {$originalClass}, the abstract class cannot be created!"); } }