@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | */ |
| 271 | 271 | public function getAddress(): string |
| 272 | 272 | { |
| 273 | - return $this->getStreet().', '.$this->getZipCode().' '.$this->getCity(); |
|
| 273 | + return $this->getStreet() . ', ' . $this->getZipCode() . ' ' . $this->getCity(); |
|
| 274 | 274 | } |
| 275 | 275 | |
| 276 | 276 | /** |
@@ -278,6 +278,6 @@ discard block |
||
| 278 | 278 | */ |
| 279 | 279 | public function getAddressMultiline(): string |
| 280 | 280 | { |
| 281 | - return $this->getStreet()."\n".$this->getZipCode().' '.$this->getCity(); |
|
| 281 | + return $this->getStreet() . "\n" . $this->getZipCode() . ' ' . $this->getCity(); |
|
| 282 | 282 | } |
| 283 | 283 | } |