File "CannotCastDate.php"
Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Exceptions/CannotCastDate.php
File size: 320 bytes
MIME-type: text/x-php
Charset: utf-8
<?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));
}
}