Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
back
/
app
/
DtoCasts
:
MediaCast.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare(strict_types=1); namespace App\DtoCasts; use Illuminate\Http\UploadedFile; use WendellAdriel\ValidatedDTO\Casting\Castable; final class MediaCast implements Castable { public function cast(string $property, mixed $value): mixed { if ($value instanceof UploadedFile) { return $value; } return null; } }