Completed
Push — 1.0-suspend-7.2-support ( a8a046 )
by Kamil
73:42 queued 53:29
created
app/AppCache.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
 use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache;
15 15
 
Please login to merge, or discard this patch.
app/AppKernel.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
 use Sylius\Bundle\CoreBundle\Application\Kernel;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/ProductReview/IndexPageInterface.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\ProductReview;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Order/ShowPage.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\Order;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Contact/ContactPage.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\Contact;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/HomePage.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;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/AddressPageInterface.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\Shop\Checkout;
15 15
 
Please login to merge, or discard this patch.
Doc Comments   +21 added lines patch added patch discarded remove patch
@@ -23,6 +23,7 @@  discard block
 block discarded – undo
23 23
 {
24 24
     /**
25 25
      * @throws \RuntimeException
26
+     * @return void
26 27
      */
27 28
     public function chooseDifferentBillingAddress();
28 29
 
@@ -41,21 +42,25 @@  discard block
 block discarded – undo
41 42
 
42 43
     /**
43 44
      * @param AddressInterface $billingAddress
45
+     * @return void
44 46
      */
45 47
     public function specifyBillingAddress(AddressInterface $billingAddress);
46 48
 
47 49
     /**
48 50
      * @param string $province
51
+     * @return void
49 52
      */
50 53
     public function selectBillingAddressProvince($province);
51 54
 
52 55
     /**
53 56
      * @param AddressInterface $shippingAddress
57
+     * @return void
54 58
      */
55 59
     public function specifyShippingAddress(AddressInterface $shippingAddress);
56 60
 
57 61
     /**
58 62
      * @param string $province
63
+     * @return void
59 64
      */
60 65
     public function selectShippingAddressProvince($province);
61 66
 
@@ -64,20 +69,26 @@  discard block
 block discarded – undo
64 69
      */
65 70
     public function canSignIn();
66 71
 
72
+    /**
73
+     * @return void
74
+     */
67 75
     public function signIn();
68 76
 
69 77
     /**
70 78
      * @param string $email
79
+     * @return void
71 80
      */
72 81
     public function specifyEmail($email);
73 82
 
74 83
     /**
75 84
      * @param string $fullName
85
+     * @return void
76 86
      */
77 87
     public function specifyShippingAddressFullName(string $fullName);
78 88
 
79 89
     /**
80 90
      * @param string $password
91
+     * @return void
81 92
      */
82 93
     public function specifyPassword($password);
83 94
 
@@ -93,17 +104,25 @@  discard block
 block discarded – undo
93 104
      */
94 105
     public function getShippingAddressCountry();
95 106
 
107
+    /**
108
+     * @return void
109
+     */
96 110
     public function nextStep();
97 111
 
112
+    /**
113
+     * @return void
114
+     */
98 115
     public function backToStore();
99 116
 
100 117
     /**
101 118
      * @param string $provinceName
119
+     * @return void
102 120
      */
103 121
     public function specifyBillingAddressProvince($provinceName);
104 122
 
105 123
     /**
106 124
      * @param string $provinceName
125
+     * @return void
107 126
      */
108 127
     public function specifyShippingAddressProvince($provinceName);
109 128
 
@@ -119,11 +138,13 @@  discard block
 block discarded – undo
119 138
 
120 139
     /**
121 140
      * @param AddressInterface $address
141
+     * @return void
122 142
      */
123 143
     public function selectShippingAddressFromAddressBook(AddressInterface $address);
124 144
 
125 145
     /**
126 146
      * @param AddressInterface $address
147
+     * @return void
127 148
      */
128 149
     public function selectBillingAddressFromAddressBook(AddressInterface $address);
129 150
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/ProfileUpdatePage.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\Account;
15 15
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Cart/SummaryPage.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\Cart;
15 15
 
Please login to merge, or discard this patch.