| 1 | <?php |
||
| 23 | class AttributeEntity extends Model |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * {@inheritdoc} |
||
| 27 | */ |
||
| 28 | protected $fillable = [ |
||
| 29 | 'entity_type', |
||
| 30 | ]; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | protected $casts = [ |
||
| 36 | 'entity_type' => 'string', |
||
| 37 | ]; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Create a new Eloquent model instance. |
||
| 41 | * |
||
| 42 | * @param array $attributes |
||
| 43 | */ |
||
| 44 | public function __construct(array $attributes = []) |
||
| 50 | } |
||
| 51 |