Completed
Push — theme-bundle ( cf8fa7...ccadad )
by Kamil
31:58 queued 16:02
created
src/Sylius/Component/Shipping/Calculator/DefaultCalculators.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -19,24 +19,24 @@
 block discarded – undo
19 19
     /**
20 20
      * Flat rate per shipment calculator.
21 21
      */
22
-    const FLAT_RATE           = 'flat_rate';
22
+    const FLAT_RATE = 'flat_rate';
23 23
 
24 24
     /**
25 25
      * Fixed price per item calculator.
26 26
      */
27
-    const PER_ITEM_RATE       = 'per_item_rate';
27
+    const PER_ITEM_RATE = 'per_item_rate';
28 28
 
29 29
     /**
30 30
      * Flexible rate calculator.
31 31
      * Fixed price for first item and constant rate
32 32
      * for each additional item with a limit.
33 33
      */
34
-    const FLEXIBLE_RATE       = 'flexible_rate';
34
+    const FLEXIBLE_RATE = 'flexible_rate';
35 35
 
36 36
     /**
37 37
      * Fixed price per weight calculator.
38 38
      */
39
-    const WEIGHT_RATE         = 'weight_rate';
39
+    const WEIGHT_RATE = 'weight_rate';
40 40
 
41 41
     /**
42 42
      * Flexible prices for weight ranges.
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/Product.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -368,7 +368,7 @@
 block discarded – undo
368 368
      */
369 369
     public function getMainTaxon()
370 370
     {
371
-       return $this->mainTaxon;
371
+        return $this->mainTaxon;
372 372
     }
373 373
 
374 374
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
     public function getTaxons($taxonomy = null)
152 152
     {
153 153
         if (null !== $taxonomy) {
154
-            return $this->taxons->filter(function (BaseTaxonInterface $taxon) use ($taxonomy) {
154
+            return $this->taxons->filter(function(BaseTaxonInterface $taxon) use ($taxonomy) {
155 155
                 return $taxonomy === strtolower($taxon->getTaxonomy()->getName());
156 156
             });
157 157
         }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductVariant.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -138,10 +138,10 @@  discard block
 block discarded – undo
138 138
             $string .= '(';
139 139
 
140 140
             foreach ($this->getOptions() as $option) {
141
-                $string .= $option->getOption()->getName() . ': ' . $option->getValue() . ', ';
141
+                $string .= $option->getOption()->getName().': '.$option->getValue().', ';
142 142
             }
143 143
 
144
-            $string = substr($string, 0, -2) . ')';
144
+            $string = substr($string, 0, -2).')';
145 145
         }
146 146
 
147 147
         return $string;
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
      */
303 303
     public function setSold($sold)
304 304
     {
305
-        $this->sold = (int)$sold;
305
+        $this->sold = (int) $sold;
306 306
 
307 307
         return $this;
308 308
     }
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
      */
329 329
     public function setAvailableOnDemand($availableOnDemand)
330 330
     {
331
-        $this->availableOnDemand = (bool)$availableOnDemand;
331
+        $this->availableOnDemand = (bool) $availableOnDemand;
332 332
 
333 333
         return $this;
334 334
     }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/Order.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
      */
274 274
     public function getInventoryUnitsByVariant(ProductVariantInterface $variant)
275 275
     {
276
-        return $this->getInventoryUnits()->filter(function (InventoryUnitInterface $unit) use ($variant) {
276
+        return $this->getInventoryUnits()->filter(function(InventoryUnitInterface $unit) use ($variant) {
277 277
             return $variant === $unit->getStockable();
278 278
         });
279 279
     }
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
             return false;
342 342
         }
343 343
 
344
-        return $this->payments->filter(function (BasePaymentInterface $payment) use ($state) {
344
+        return $this->payments->filter(function(BasePaymentInterface $payment) use ($state) {
345 345
             return $payment->getState() === $state;
346 346
         })->last();
347 347
     }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Promotion/Action/ShippingDiscountAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 
36 36
         $adjustment = $this->createAdjustment($promotion);
37 37
         $adjustmentAmount = (int) round($subject->getAdjustmentsTotal(AdjustmentInterface::SHIPPING_ADJUSTMENT) * $configuration['percentage']);
38
-        $adjustment->setAmount(- $adjustmentAmount);
38
+        $adjustment->setAmount(-$adjustmentAmount);
39 39
 
40 40
         $subject->addAdjustment($adjustment);
41 41
     }
Please login to merge, or discard this patch.
src/Sylius/Component/Core/spec/Model/CustomerSpec.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,6 @@
 block discarded – undo
17 17
 use Sylius\Component\Core\Model\CustomerInterface;
18 18
 
19 19
 /**
20
-
21 20
  * @author Alexandre Bacco <[email protected]>
22 21
  */
23 22
 class CustomerSpec extends ObjectBehavior
Please login to merge, or discard this patch.
src/Sylius/Component/Core/spec/Model/ProductSpec.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@
 block discarded – undo
163 163
 
164 164
     function it_has_no_main_taxon_by_default()
165 165
     {
166
-      $this->getMainTaxon()->shouldReturn(null);
166
+        $this->getMainTaxon()->shouldReturn(null);
167 167
     }
168 168
 
169 169
     function it_sets_main_taxon(TaxonInterface $taxon)
Please login to merge, or discard this patch.
src/Sylius/Component/Taxation/Model/TaxCategory.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
      */
81 81
     public function getCode()
82 82
     {
83
-         return $this->code;
83
+            return $this->code;
84 84
     }
85 85
 
86 86
     /**
Please login to merge, or discard this patch.
src/Sylius/Component/Payment/Model/PaymentMethod.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
      */
127 127
     public function setEnabled($enabled)
128 128
     {
129
-        $this->enabled = (Boolean)$enabled;
129
+        $this->enabled = (Boolean) $enabled;
130 130
     }
131 131
 
132 132
     /**
Please login to merge, or discard this patch.