This commit is contained in:
2022-02-05 07:43:27 +00:00
committed by Gitea
parent b26b8bdb98
commit 877d77f28b
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;
}