File "Uncastable.php"
Full Path: /var/www/html/back/vendor/spatie/laravel-data/src/Casts/Uncastable.php
File size: 256 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\LaravelData\Casts;
class Uncastable
{
public static Uncastable $instance;
private function __construct()
{
}
public static function create(): self
{
return self::$instance ??= new self();
}
}