| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 72 | public function jsonSerialize(): array |
||
| 73 | { |
||
| 74 | $json = [ |
||
| 75 | 'segment_id' => $this->segmentId, |
||
| 76 | 'passenger_id' => $this->passengerId, |
||
| 77 | 'seat' => $this->seat, |
||
| 78 | 'seat_type' => $this->seatType, |
||
| 79 | 'product_info' => $this->productInfo, |
||
| 80 | ]; |
||
| 81 | |||
| 82 | return array_filter($json); |
||
| 83 | } |
||
| 84 | } |
||
| 85 |