<?php
namespace IlluminateContractsDatabaseEloquent;
interface Castable
{
/**
* Get the name of the caster class to use when casting from / to this cast target.
*
* @param array $arguments
* @return string
* @return string|IlluminateContractsDatabaseEloquentCastsAttributes|IlluminateContractsDatabaseEloquentCastsInboundAttributes
*/
public static function castUsing(array $arguments);
}