Completed
Push — travis-trusty ( e83726 )
by Kamil
35:22
created
src/Sylius/Component/Core/spec/Model/OrderItemSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace spec\Sylius\Component\Core\Model;
6 6
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/spec/Test/Services/DefaultChannelFactorySpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace spec\Sylius\Component\Core\Test\Services;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/spec/Test/Factory/TestPromotionFactorySpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace spec\Sylius\Component\Core\Test\Factory;
15 15
 
Please login to merge, or discard this patch.
Component/Core/spec/Currency/Context/ChannelAwareCurrencyContextSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace spec\Sylius\Component\Core\Currency\Context;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/spec/Currency/CurrencyStorageSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 namespace spec\Sylius\Component\Core\Currency;
6 6
 
Please login to merge, or discard this patch.
Sylius/Component/Core/spec/Calculator/ProductVariantPriceCalculatorSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace spec\Sylius\Component\Core\Calculator;
15 15
 
Please login to merge, or discard this patch.
spec/Taxation/Exception/UnsupportedTaxCalculationStrategyExceptionSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace spec\Sylius\Component\Core\Taxation\Exception;
15 15
 
Please login to merge, or discard this patch.
Component/Core/spec/Taxation/Applicator/OrderItemsTaxesApplicatorSpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace spec\Sylius\Component\Core\Taxation\Applicator;
15 15
 
Please login to merge, or discard this patch.
Core/spec/Taxation/Applicator/OrderShipmentTaxesApplicatorSpec.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * file that was distributed with this source code.
10 10
  */
11 11
 
12
-declare(strict_types=1);
12
+declare(strict_types = 1);
13 13
 
14 14
 namespace spec\Sylius\Component\Core\Taxation\Applicator;
15 15
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
         $order->getShippingTotal()->willReturn(10);
115 115
         $order->getShipments()->willReturn(new ArrayCollection([]));
116 116
 
117
-        $this->shouldThrow(\LogicException::class)->during('apply', [$order, $zone]);;
117
+        $this->shouldThrow(\LogicException::class)->during('apply', [$order, $zone]); ;
118 118
     }
119 119
 
120 120
     function it_does_nothing_if_tax_rate_cannot_be_resolved(
Please login to merge, or discard this patch.