igfs/vendor/illuminate/contracts/Database/Eloquent/Castable.php

14 lines
373 B
PHP
Raw Normal View History

2024-07-03 14:41:15 +03: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.
*
* @return string|\Illuminate\Contracts\Database\Eloquent\CastsAttributes|\Illuminate\Contracts\Database\Eloquent\CastsInboundAttributes
*/
public static function castUsing();
}