mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
* Add support for CastsInboundAttributes * Update changelog Co-authored-by: Simon Verwaard <[email protected]>
16 lines
384 B
PHP
16 lines
384 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\LaravelCustomCasts\Casts;
|
|
|
|
use Illuminate\Contracts\Database\Eloquent\CastsInboundAttributes;
|
|
|
|
class InboundAttributeCaster implements CastsInboundAttributes
|
|
{
|
|
public function set($model, string $key, $value, array $attributes)
|
|
{
|
|
// TODO: Implement set() method.
|
|
}
|
|
}
|