Completed
Push — travis-xenial ( 7adc75...e98fcf )
by Kamil
05:18
created
DependencyInjection/Compiler/RegisterTaxCalculationStrategiesPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
                     throw new \InvalidArgumentException('Tagged tax calculation strategies need to have `type` and `label` attributes.');
40 40
                 }
41 41
 
42
-                $priority = (int)($attribute['priority'] ?? 0);
42
+                $priority = (int) ($attribute['priority'] ?? 0);
43 43
 
44 44
                 $strategies[$attribute['type']] = $attribute['label'];
45 45
 
Please login to merge, or discard this patch.
DependencyInjection/Compiler/RegisterPaymentMethodsResolversPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
                     throw new \InvalidArgumentException('Tagged payment methods resolvers need to have `type` and `label` attributes.');
38 38
                 }
39 39
 
40
-                $priority = (int)($attribute['priority'] ?? 0);
40
+                $priority = (int) ($attribute['priority'] ?? 0);
41 41
 
42 42
                 $resolvers[$attribute['type']] = $attribute['label'];
43 43
 
Please login to merge, or discard this patch.
DependencyInjection/Compiler/RegisterShippingMethodsResolversPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
                     throw new \InvalidArgumentException('Tagged shipping methods resolvers need to have `type` and `label` attributes.');
38 38
                 }
39 39
 
40
-                $priority = (int)($attribute['priority'] ?? 0);
40
+                $priority = (int) ($attribute['priority'] ?? 0);
41 41
 
42 42
                 $resolvers[$attribute['type']] = $attribute['label'];
43 43
 
Please login to merge, or discard this patch.