Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
81 | public function jsonSerialize(): array |
||
82 | { |
||
83 | $json = [ |
||
84 | 'street_1' => $this->street, |
||
85 | 'street_2' => $this->additionalStreet, |
||
86 | 'city' => $this->city, |
||
87 | 'postal_code' => $this->postalCode, |
||
88 | 'state' => $this->state, |
||
89 | 'country' => $this->country, |
||
90 | ]; |
||
91 | |||
92 | return array_filter($json); |
||
93 | } |
||
94 | } |
||
95 |