Completed
Push — resource-classnames ( 503d2e )
by Kamil
18:12
created
Sylius/Behat/Page/Admin/Product/UpdateConfigurableProductPageInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
     /**
28 28
      * @param string $name
29 29
      * @param string $localeCode
30
+     * @return void
30 31
      */
31 32
     public function nameItIn($name, $localeCode);
32 33
 
@@ -49,6 +50,7 @@  discard block
 block discarded – undo
49 50
     
50 51
     /**
51 52
      * @param TaxonInterface $taxon
53
+     * @return void
52 54
      */
53 55
     public function selectMainTaxon(TaxonInterface $taxon);
54 56
 
@@ -62,20 +64,26 @@  discard block
 block discarded – undo
62 64
     /**
63 65
      * @param string $code
64 66
      * @param string $path
67
+     * @return void
65 68
      */
66 69
     public function attachImageWithCode($code, $path);
67 70
 
68 71
     /**
69 72
      * @param string $code
70 73
      * @param string $path
74
+     * @return void
71 75
      */
72 76
     public function changeImageWithCode($code, $path);
73 77
 
74 78
     /**
75 79
      * @param string $code
80
+     * @return void
76 81
      */
77 82
     public function removeImageWithCode($code);
78 83
 
84
+    /**
85
+     * @return void
86
+     */
79 87
     public function removeFirstImage();
80 88
 
81 89
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/UpdatePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -23,10 +23,17 @@
 block discarded – undo
23 23
 
24 24
     /**
25 25
      * @param bool $enabled
26
+     * @return void
26 27
      */
27 28
     public function setEnabled($enabled);
28 29
 
30
+    /**
31
+     * @return void
32
+     */
29 33
     public function enable();
30 34
 
35
+    /**
36
+     * @return void
37
+     */
31 38
     public function disable();
32 39
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/TaxRate/CreatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -20,33 +20,42 @@
 block discarded – undo
20 20
 {
21 21
     /**
22 22
      * @param string $name
23
+     * @return void
23 24
      */
24 25
     public function specifyFirstName($name);
25 26
 
26 27
     /**
27 28
      * @param string $name
29
+     * @return void
28 30
      */
29 31
     public function specifyLastName($name);
30 32
 
31 33
     /**
32 34
      * @param string $email
35
+     * @return void
33 36
      */
34 37
     public function specifyEmail($email);
35 38
 
36 39
     /**
37 40
      * @param string $birthday
41
+     * @return void
38 42
      */
39 43
     public function specifyBirthday($birthday);
40 44
 
41 45
     /**
42 46
      * @param string $password
47
+     * @return void
43 48
      */
44 49
     public function specifyPassword($password);
45 50
 
46 51
     /**
47 52
      * @param string $gender
53
+     * @return void
48 54
      */
49 55
     public function chooseGender($gender);
50 56
 
57
+    /**
58
+     * @return void
59
+     */
51 60
     public function selectCreateAccount();
52 61
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/DashboardPageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,5 +18,8 @@
 block discarded – undo
18 18
  */
19 19
 interface PasswordUpdaterInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function updatePassword(CredentialsHolderInterface $user);
22 25
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/ProfileUpdatePageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -21,19 +21,25 @@  discard block
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @param string $firstName
24
+     * @return void
24 25
      */
25 26
     public function specifyFirstName($firstName);
26 27
 
27 28
     /**
28 29
      * @param string $lastName
30
+     * @return void
29 31
      */
30 32
     public function specifyLastName($lastName);
31 33
 
32 34
     /**
33 35
      * @param string $email
36
+     * @return void
34 37
      */
35 38
     public function specifyEmail($email);
36 39
 
40
+    /**
41
+     * @return void
42
+     */
37 43
     public function saveChanges();
38 44
 
39 45
     /**
@@ -46,6 +52,9 @@  discard block
 block discarded – undo
46 52
      */
47 53
     public function checkValidationMessageFor($element, $message);
48 54
 
55
+    /**
56
+     * @return void
57
+     */
49 58
     public function subscribeToTheNewsletter();
50 59
 
51 60
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/RegisterPageInterface.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -26,37 +26,49 @@
 block discarded – undo
26 26
      */
27 27
     public function checkValidationMessageFor($element, $message);
28 28
 
29
+    /**
30
+     * @return void
31
+     */
29 32
     public function register();
30 33
 
31 34
     /**
32 35
      * @param string $email
36
+     * @return void
33 37
      */
34 38
     public function specifyEmail($email);
35 39
 
36 40
     /**
37 41
      * @param string $firstName
42
+     * @return void
38 43
      */
39 44
     public function specifyFirstName($firstName);
40 45
 
41 46
     /**
42 47
      * @param string $lastName
48
+     * @return void
43 49
      */
44 50
     public function specifyLastName($lastName);
45 51
 
46 52
     /**
47 53
      * @param string $password
54
+     * @return void
48 55
      */
49 56
     public function specifyPassword($password);
50 57
 
51 58
     /**
52 59
      * @param string $phoneNumber
60
+     * @return void
53 61
      */
54 62
     public function specifyPhoneNumber($phoneNumber);
55 63
 
56 64
     /**
57 65
      * @param string $password
66
+     * @return void
58 67
      */
59 68
     public function verifyPassword($password);
60 69
 
70
+    /**
71
+     * @return void
72
+     */
61 73
     public function subscribeToTheNewsletter();
62 74
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/VerificationPageInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Cart/SummaryPageInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -70,17 +70,20 @@  discard block
 block discarded – undo
70 70
 
71 71
     /**
72 72
      * @param string $productName
73
+     * @return void
73 74
      */
74 75
     public function removeProduct($productName);
75 76
 
76 77
     /**
77 78
      * @param string $productName
78 79
      * @param int $quantity
80
+     * @return void
79 81
      */
80 82
     public function changeQuantity($productName, $quantity);
81 83
 
82 84
     /**
83 85
      * @param string $couponCode
86
+     * @return void
84 87
      */
85 88
     public function applyCoupon($couponCode);
86 89
 
@@ -143,12 +146,19 @@  discard block
 block discarded – undo
143 146
      */
144 147
     public function getCartTotal();
145 148
 
149
+    /**
150
+     * @return void
151
+     */
146 152
     public function clearCart();
147 153
 
154
+    /**
155
+     * @return void
156
+     */
148 157
     public function updateCart();
149 158
 
150 159
     /**
151 160
      * @param int $timeout
161
+     * @return void
152 162
      */
153 163
     public function waitForRedirect($timeout);
154 164
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/AddressPage.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
     }
305 305
 
306 306
     /**
307
-     * @return bool
307
+     * @return boolean|null
308 308
      */
309 309
     private function waitForLoginAction()
310 310
     {
@@ -314,6 +314,8 @@  discard block
 block discarded – undo
314 314
     }
315 315
 
316 316
     /**
317
+     * @param integer $timeout
318
+     * @param string $elementName
317 319
      * @return bool
318 320
      */
319 321
     private function waitForElement($timeout, $elementName)
Please login to merge, or discard this patch.