Файл vendor/laravel/framework/src/Illuminate/Contracts/Database/Eloquent/Castable.php Вес запакованого файла 228b (228 b) Вес распакованого файла: 388b (388 b) Метод сжатия: 8
<?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
* @return class-string<CastsAttributes|CastsInboundAttributes>|CastsAttributes|CastsInboundAttributes
*/
public static function castUsing(array $arguments);
}