Completed
Push — docs-installation-setup ( 464016 )
by Kamil
05:18
created
src/Sylius/Behat/Context/Api/Admin/ManagingZonesContext.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 use Sylius\Component\Addressing\Model\CountryInterface;
22 22
 use Sylius\Component\Addressing\Model\ProvinceInterface;
23 23
 use Sylius\Component\Addressing\Model\ZoneInterface;
24
-use Sylius\Component\Addressing\Model\ZoneMember;
25 24
 use Sylius\Component\Addressing\Model\ZoneMemberInterface;
26 25
 use Webmozart\Assert\Assert;
27 26
 
Please login to merge, or discard this patch.
tests/Functional/SalesDataProviderTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         $this->assertInstanceOf(SalesSummary::class, $salesSummary);
97 97
         $this->assertSame($expectedPeriods, $salesSummary->getIntervals());
98 98
         $this->assertSame(
99
-            ['70.00', '40.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00'],
99
+            ['70.00', '40.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00'],
100 100
             $salesSummary->getSales()
101 101
         );
102 102
     }
@@ -114,8 +114,8 @@  discard block
 block discarded – undo
114 114
         $this->assertSame($expectedPeriods, $salesSummary->getIntervals());
115 115
         $this->assertSame(
116 116
             [
117
-                '0.00', '0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'20.00',
118
-                '70.00', '40.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00' ,'0.00'
117
+                '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '20.00',
118
+                '70.00', '40.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00', '0.00'
119 119
             ],
120 120
             $salesSummary->getSales()
121 121
         );
Please login to merge, or discard this patch.
src/Sylius/Component/Core/spec/Dashboard/SalesSummarySpec.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
     function it_has_intervals_list(): void
29 29
     {
30 30
         $this->getIntervals()->shouldReturn(
31
-            [9, 10 ,11]
31
+            [9, 10, 11]
32 32
         );
33 33
     }
34 34
 
Please login to merge, or discard this patch.