mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 18:13:11 +00:00
* feat: add support for AsCollection and AsArrayObject casts * update changelog * improve tests * remove change * composer fix-style * snapshot --------- Co-authored-by: Barry vd. Heuvel <[email protected]> Co-authored-by: laravel-ide-helper <[email protected]>
30 lines
1.1 KiB
PHP
30 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Barryvdh\LaravelIdeHelper\Tests\Console\ModelsCommand\AdvancedCasts\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Casts\AsArrayObject;
|
|
use Illuminate\Database\Eloquent\Casts\AsCollection;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AdvancedCast extends Model
|
|
{
|
|
protected $casts = [
|
|
'cast_to_date_serialization' => 'date:Y-m-d',
|
|
'cast_to_datetime_serialization' => 'datetime:Y-m-d H:i:s',
|
|
'cast_to_custom_datetime' => 'custom_datetime:Y-m-d H:i:s',
|
|
'cast_to_immutable_date' => 'immutable_date',
|
|
'cast_to_immutable_custom_datetime' => 'immutable_custom_datetime:Y-m-d H:i:s',
|
|
'cast_to_immutable_datetime' => 'immutable_datetime',
|
|
'cast_to_timestamp' => 'timestamp',
|
|
'cast_to_encrypted' => 'encrypted',
|
|
'cast_to_encrypted_array' => 'encrypted:array',
|
|
'cast_to_encrypted_collection' => 'encrypted:collection',
|
|
'cast_to_encrypted_json' => 'encrypted:json',
|
|
'cast_to_encrypted_object' => 'encrypted:object',
|
|
'cast_to_as_collection' => AsCollection::class,
|
|
'cast_to_as_array_object' => AsArrayObject::class,
|
|
];
|
|
}
|