1 | <?php |
||
9 | class StoredEvent extends Model |
||
10 | { |
||
11 | public $guarded = []; |
||
12 | |||
13 | public $timestamps = false; |
||
14 | |||
15 | public $casts = [ |
||
16 | 'event_properties' => 'array', |
||
17 | ]; |
||
18 | |||
19 | public static function createForEvent(ShouldBeStored $event): self |
||
29 | |||
30 | public static function getMaxId(): int |
||
34 | |||
35 | public function getEventAttribute(): ShouldBeStored |
||
42 | } |
||
43 |