This commit is contained in:
2022-02-05 07:43:27 +00:00
committed by Gitea
parent db19655b60
commit 944c4cb564
34 changed files with 1936 additions and 8 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
namespace Spatie\DataTransferObject;
interface Caster
{
public function cast(mixed $value): mixed;
}