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
:
CannotCastDate.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\LaravelData\Exceptions; use Exception; class CannotCastDate extends Exception { public static function create(array $formats, string $type, mixed $value): self { return new self("Could not cast date `{$value}` into a `{$type}` using formats: ".implode(', ', $formats)); } }