independent-analytics
/
vendor
/
illuminate
/
contracts
/
Database
/
Eloquent
/
CastsInboundAttributes.php
Builder.php
1 month ago
Castable.php
1 month ago
CastsAttributes.php
1 month ago
CastsInboundAttributes.php
2 years ago
DeviatesCastableAttributes.php
2 years ago
SerializesCastableAttributes.php
2 years ago
SupportsPartialRelations.php
2 years ago
CastsInboundAttributes.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Contracts\Database\Eloquent; |
| 4 | |
| 5 | /** @internal */ |
| 6 | interface CastsInboundAttributes |
| 7 | { |
| 8 | /** |
| 9 | * Transform the attribute to its underlying model values. |
| 10 | * |
| 11 | * @param \Illuminate\Database\Eloquent\Model $model |
| 12 | * @param string $key |
| 13 | * @param mixed $value |
| 14 | * @param array $attributes |
| 15 | * @return mixed |
| 16 | */ |
| 17 | public function set($model, string $key, $value, array $attributes); |
| 18 | } |
| 19 |