1 | <?php |
||
9 | class EloquentSnapshot extends Model |
||
10 | { |
||
11 | public $guarded = []; |
||
12 | |||
13 | public $timestamps = false; |
||
14 | |||
15 | protected $table = 'snapshots'; |
||
16 | |||
17 | public $casts = [ |
||
18 | 'state' => 'array', |
||
19 | ]; |
||
20 | |||
21 | public function toSnapshot(): Snapshot |
||
25 | |||
26 | public function scopeUuid(Builder $query, string $uuid): void |
||
30 | } |
||
31 |