Completed
Push — 1.0-adjust-cs ( dde5cf )
by Kamil
27:56
created
Sylius/Bundle/GridBundle/Tests/DependencyInjection/ConfigurationTest.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/OrderShowMenuBuilderSpec.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/UserBundle/Command/AbstractRoleCommand.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\Command;
15 15
 
Please login to merge, or discard this patch.
tests/Controller/ChannelApiTest.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\Tests\Controller;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/SelectShippingPage.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\Behat\Page\Shop\Checkout;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/CompletePage.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\Behat\Page\Shop\Checkout;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Product/IndexPerTaxonPageInterface.php 2 patches
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\Page\Admin\Product;
15 15
 
Please login to merge, or discard this patch.
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -30,8 +30,12 @@
 block discarded – undo
30 30
     /**
31 31
      * @param string $productName
32 32
      * @param int $position
33
+     * @return void
33 34
      */
34 35
     public function setPositionOfProduct($productName, $position);
35 36
 
37
+    /**
38
+     * @return void
39
+     */
36 40
     public function savePositions();
37 41
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Customer/UpdatePageInterface.php 2 patches
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\Page\Admin\Customer;
15 15
 
Please login to merge, or discard this patch.
Doc Comments   +13 added lines patch added patch discarded remove patch
@@ -20,8 +20,14 @@  discard block
 block discarded – undo
20 20
  */
21 21
 interface UpdatePageInterface extends BaseUpdatePageInterface
22 22
 {
23
+    /**
24
+     * @return void
25
+     */
23 26
     public function enable();
24 27
 
28
+    /**
29
+     * @return void
30
+     */
25 31
     public function disable();
26 32
 
27 33
     /**
@@ -31,6 +37,7 @@  discard block
 block discarded – undo
31 37
 
32 38
     /**
33 39
      * @param string $firstName
40
+     * @return void
34 41
      */
35 42
     public function changeFirstName($firstName);
36 43
 
@@ -41,6 +48,7 @@  discard block
 block discarded – undo
41 48
 
42 49
     /**
43 50
      * @param string $lastName
51
+     * @return void
44 52
      */
45 53
     public function changeLastName($lastName);
46 54
 
@@ -51,11 +59,13 @@  discard block
 block discarded – undo
51 59
 
52 60
     /**
53 61
      * @param string $email
62
+     * @return void
54 63
      */
55 64
     public function changeEmail($email);
56 65
 
57 66
     /**
58 67
      * @param string $password
68
+     * @return void
59 69
      */
60 70
     public function changePassword($password);
61 71
 
@@ -64,6 +74,9 @@  discard block
 block discarded – undo
64 74
      */
65 75
     public function getPassword();
66 76
 
77
+    /**
78
+     * @return void
79
+     */
67 80
     public function subscribeToTheNewsletter();
68 81
 
69 82
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/DashboardPage.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\Behat\Page\Admin;
15 15
 
Please login to merge, or discard this patch.