Completed
Push — 1.0-coding-standard-2-addition... ( 10d1c2 )
by Kamil
34:11 queued 09:30
created
src/Sylius/Bundle/GridBundle/Doctrine/ORM/DataSource.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 Sylius\Bundle\GridBundle\Doctrine\ORM;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/GridBundle/Doctrine/DBAL/DataSource.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 Sylius\Bundle\GridBundle\Doctrine\DBAL;
15 15
 
Please login to merge, or discard this patch.
Bundle/GridBundle/Tests/DependencyInjection/SyliusGridExtensionTest.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 Sylius\Bundle\GridBundle\Tests\DependencyInjection;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/AdminBundle/spec/Menu/CustomerShowMenuBuilderSpec.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\Bundle\AdminBundle\Menu;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/AdminBundle/Menu/OrderShowMenuBuilder.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 Sylius\Bundle\AdminBundle\Menu;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/AdminBundle/Menu/CustomerShowMenuBuilder.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 Sylius\Bundle\AdminBundle\Menu;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/AdminBundle/Controller/ImpersonateUserController.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 Sylius\Bundle\AdminBundle\Controller;
15 15
 
Please login to merge, or discard this patch.
Sylius/Bundle/UserBundle/Authentication/AuthenticationFailureHandler.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 Sylius\Bundle\UserBundle\Authentication;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Component/Addressing/Matcher/ZoneMatcher.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
     /**
149 149
      * @param string $code
150 150
      *
151
-     * @return ZoneInterface|null
151
+     * @return AddressInterface
152 152
      */
153 153
     private function getZoneByCode(string $code): ?ZoneInterface
154 154
     {
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 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 Sylius\Component\Addressing\Matcher;
15 15
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     /**
52 52
      * {@inheritdoc}
53 53
      */
54
-    public function match(AddressInterface $address, ?string $scope = null): ?ZoneInterface
54
+    public function match(AddressInterface $address, ?string $scope = null) : ?ZoneInterface
55 55
     {
56 56
         $zones = [];
57 57
 
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     /**
75 75
      * {@inheritdoc}
76 76
      */
77
-    public function matchAll(AddressInterface $address, ?string $scope = null): array
77
+    public function matchAll(AddressInterface $address, ?string $scope = null) : array
78 78
     {
79 79
         $zones = [];
80 80
 
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
      *
137 137
      * @return array
138 138
      */
139
-    private function getZones(?string $scope = null): array
139
+    private function getZones(?string $scope = null) : array
140 140
     {
141 141
         if (null === $scope) {
142 142
             return $this->zoneRepository->findAll();
Please login to merge, or discard this patch.