Blame view
public/vendor/illuminate/contracts/Database/Eloquent/Castable.php
373 Bytes
86143e36f Коммит вторник |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<?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(); } |