Passed
Push — master ( d7e9ff...5faebe )
by Jan
04:24
created
src/Entity/Embeddable/PayeeInfo.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 }
Please login to merge, or discard this patch.