Completed
Push — pull-request/8500 ( e49efc...54b484 )
by Kamil
36:05 queued 17:36
created
src/Sylius/Behat/Service/SecurityServiceInterface.php 2 patches
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -24,9 +24,13 @@  discard block
 block discarded – undo
24 24
      * @param UserInterface $user
25 25
      *
26 26
      * @throws \InvalidArgumentException
27
+     * @return void
27 28
      */
28 29
     public function logIn(UserInterface $user);
29 30
 
31
+    /**
32
+     * @return void
33
+     */
30 34
     public function logOut();
31 35
 
32 36
     /**
@@ -38,6 +42,7 @@  discard block
 block discarded – undo
38 42
 
39 43
     /**
40 44
      * @param TokenInterface $token
45
+     * @return void
41 46
      */
42 47
     public function restoreToken(TokenInterface $token);
43 48
 }
Please login to merge, or discard this 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\Behat\Service;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/SharedSecurityServiceInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * @param AdminUserInterface $adminUser
23 23
      * @param callable $action
24
+     * @return void
24 25
      */
25 26
     public function performActionAsAdminUser(AdminUserInterface $adminUser, callable $action);
26 27
 }
Please login to merge, or discard this 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\Behat\Service;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Assigner/IpAssignerInterface.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -22,6 +22,7 @@
 block discarded – undo
22 22
     /**
23 23
      * @param OrderInterface $order
24 24
      * @param Request $request
25
+     * @return void
25 26
      */
26 27
     public function assign(OrderInterface $order, Request $request);
27 28
 }
Please login to merge, or discard this 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\CoreBundle\Assigner;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/EventListener/ReviewCreateListener.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
 
12 12
 namespace Sylius\Bundle\CoreBundle\EventListener;
13 13
 
14
+use Sylius\Component\Customer\Context\CustomerContextInterface;
14 15
 use Sylius\Component\Resource\Exception\UnexpectedTypeException;
15 16
 use Sylius\Component\Review\Model\ReviewInterface;
16
-use Sylius\Component\Customer\Context\CustomerContextInterface;
17 17
 use Symfony\Component\EventDispatcher\GenericEvent;
18 18
 
19 19
 /**
Please login to merge, or discard this 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\CoreBundle\EventListener;
15 15
 
Please login to merge, or discard this patch.
Bundle/CoreBundle/Fixture/Factory/ProductAssociationTypeExampleFactory.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @return array
97
+     * @return \Generator
98 98
      */
99 99
     private function getLocales()
100 100
     {
Please login to merge, or discard this 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\CoreBundle\Fixture\Factory;
15 15
 
Please login to merge, or discard this patch.
Sylius/Bundle/CoreBundle/Fixture/Factory/ProductAttributeExampleFactory.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @return array
97
+     * @return \Generator
98 98
      */
99 99
     private function getLocales()
100 100
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Sylius\Component\Core\Formatter\StringInflector;
16 16
 use Sylius\Component\Locale\Model\LocaleInterface;
17 17
 use Sylius\Component\Product\Model\ProductAttributeInterface;
18
-use Sylius\Component\Product\Model\ProductOptionInterface;
19 18
 use Sylius\Component\Resource\Repository\RepositoryInterface;
20 19
 use Symfony\Component\OptionsResolver\Options;
21 20
 use Symfony\Component\OptionsResolver\OptionsResolver;
Please login to merge, or discard this 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\CoreBundle\Fixture\Factory;
15 15
 
Please login to merge, or discard this patch.
Sylius/Bundle/CoreBundle/Fixture/Factory/ProductOptionExampleFactory.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @return array
97
+     * @return \Generator
98 98
      */
99 99
     private function getLocales()
100 100
     {
Please login to merge, or discard this 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\CoreBundle\Fixture\Factory;
15 15
 
Please login to merge, or discard this patch.
Sylius/Bundle/CoreBundle/Fixture/Factory/ShippingMethodExampleFactory.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
     }
95 95
 
96 96
     /**
97
-     * @return array
97
+     * @return \Generator
98 98
      */
99 99
     private function getLocales()
100 100
     {
Please login to merge, or discard this 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\CoreBundle\Fixture\Factory;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/GeographicalFixture.php 2 patches
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,8 +12,8 @@
 block discarded – undo
12 12
 namespace Sylius\Bundle\CoreBundle\Fixture;
13 13
 
14 14
 use Doctrine\Common\Persistence\ObjectManager;
15
-use Sylius\Component\Addressing\Factory\ZoneFactoryInterface;
16 15
 use Sylius\Bundle\FixturesBundle\Fixture\AbstractFixture;
16
+use Sylius\Component\Addressing\Factory\ZoneFactoryInterface;
17 17
 use Sylius\Component\Addressing\Model\CountryInterface;
18 18
 use Sylius\Component\Addressing\Model\ProvinceInterface;
19 19
 use Sylius\Component\Addressing\Model\ZoneInterface;
Please login to merge, or discard this 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\CoreBundle\Fixture;
15 15
 
Please login to merge, or discard this patch.