Completed
Push — master ( 7efe73...a49545 )
by Joachim
25:10 queued 10:06
created
src/Entity/OrderLine.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      */
120 120
     public function getId(): int
121 121
     {
122
-        return (int)$this->id;
122
+        return (int) $this->id;
123 123
     }
124 124
 
125 125
     /**
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      */
138 138
     public function getExternalId(): int
139 139
     {
140
-        return (int)$this->externalId;
140
+        return (int) $this->externalId;
141 141
     }
142 142
 
143 143
     /**
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
      */
228 228
     public function getTotalPrice()
229 229
     {
230
-        return DandomainFoundation\createMoney((string)$this->getOrder()->getCurrencyCode(), (int)$this->totalPrice);
230
+        return DandomainFoundation\createMoney((string) $this->getOrder()->getCurrencyCode(), (int) $this->totalPrice);
231 231
     }
232 232
 
233 233
     /**
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
      */
247 247
     public function getUnitPrice()
248 248
     {
249
-        return DandomainFoundation\createMoney((string)$this->getOrder()->getCurrencyCode(), (int)$this->unitPrice);
249
+        return DandomainFoundation\createMoney((string) $this->getOrder()->getCurrencyCode(), (int) $this->unitPrice);
250 250
     }
251 251
 
252 252
     /**
Please login to merge, or discard this patch.