Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function toStoredEventData(): StoredEventData |
||
21 | { |
||
22 | return new StoredEventData([ |
||
23 | 'id' => $this->id, |
||
24 | 'event_properties' => $this->event_properties, |
||
25 | 'aggregate_uuid' => $this->aggregate_uuid, |
||
26 | 'event_class' => $this->event_class, |
||
27 | 'meta_data' => $this->meta_data, |
||
28 | 'created_at' => $this->created_at, |
||
29 | ]); |
||
30 | } |
||
31 | |||
47 |