2022-12-24 22:10:40 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Illuminate\Contracts\Database\Eloquent;
|
|
|
|
|
|
|
|
interface Castable
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Get the name of the caster class to use when casting from / to this cast target.
|
|
|
|
*
|
|
|
|
* @param array $arguments
|
2024-01-31 22:15:08 +08:00
|
|
|
* @return class-string<CastsAttributes|CastsInboundAttributes>|CastsAttributes|CastsInboundAttributes
|
2022-12-24 22:10:40 +08:00
|
|
|
*/
|
|
|
|
public static function castUsing(array $arguments);
|
|
|
|
}
|