Completed
Push — snake-case-tests ( 55729f )
by Kamil
87:29 queued 51:35
created
src/Sylius/Behat/Page/Shop/Product/IndexPageInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -34,14 +34,19 @@
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param string $name
37
+     * @return void
37 38
      */
38 39
     public function search($name);
39 40
 
40 41
     /**
41 42
      * @param string $order
43
+     * @return void
42 44
      */
43 45
     public function sort($order);
44 46
 
47
+    /**
48
+     * @return void
49
+     */
45 50
     public function clearFilter();
46 51
 
47 52
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/Mocker/MockerInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -35,8 +35,12 @@
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param string $serviceId
38
+     * @return void
38 39
      */
39 40
     public function unmockService($serviceId);
40 41
 
42
+    /**
43
+     * @return void
44
+     */
41 45
     public function unmockAll();
42 46
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Service/SecurityServiceInterface.php 1 patch
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.
src/Sylius/Behat/Service/SharedSecurityServiceInterface.php 1 patch
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.
Bundle/AttributeBundle/Doctrine/ORM/Subscriber/LoadMetadataSubscriber.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     }
40 40
 
41 41
     /**
42
-     * @return array
42
+     * @return string[]
43 43
      */
44 44
     public function getSubscribedEvents()
45 45
     {
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Assigner/IpAssignerInterface.php 1 patch
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.
src/Sylius/Bundle/CoreBundle/Command/SetupCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
      * @param InputInterface $input
155 155
      * @param OutputInterface $output
156 156
      *
157
-     * @return mixed
157
+     * @return string
158 158
      */
159 159
     private function getAdministratorPassword(InputInterface $input, OutputInterface $output)
160 160
     {
Please login to merge, or discard this patch.
Bundle/CoreBundle/Fixture/Factory/ProductAssociationTypeExampleFactory.php 1 patch
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.
Sylius/Bundle/CoreBundle/Fixture/Factory/ProductAttributeExampleFactory.php 1 patch
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.