Completed
Push — master ( 4e62cb...ede51b )
by Joachim
29:38 queued 14:39
created
src/Entity/OrderLine.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
      */
183 183
     public function getId(): int
184 184
     {
185
-        return (int)$this->id;
185
+        return (int) $this->id;
186 186
     }
187 187
 
188 188
     /**
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
      */
201 201
     public function getExternalId(): int
202 202
     {
203
-        return (int)$this->externalId;
203
+        return (int) $this->externalId;
204 204
     }
205 205
 
206 206
     /**
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
      */
291 291
     public function getTotalPrice()
292 292
     {
293
-        return DandomainFoundation\createMoney($this->getCurrencyCode(), (int)$this->totalPrice);
293
+        return DandomainFoundation\createMoney($this->getCurrencyCode(), (int) $this->totalPrice);
294 294
     }
295 295
 
296 296
     /**
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
      */
310 310
     public function getUnitPrice()
311 311
     {
312
-        return DandomainFoundation\createMoney($this->getCurrencyCode(), (int)$this->unitPrice);
312
+        return DandomainFoundation\createMoney($this->getCurrencyCode(), (int) $this->unitPrice);
313 313
     }
314 314
 
315 315
     /**
Please login to merge, or discard this patch.