Completed
Push — fixtures/parameter-fix ( 1f3fd9...164a01 )
by Kamil
32:45
created
src/Sylius/Behat/Page/Admin/PromotionCoupon/GeneratePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -39,25 +39,32 @@
 block discarded – undo
39 39
      */
40 40
     public function checkGenerationValidation($message);
41 41
 
42
+    /**
43
+     * @return void
44
+     */
42 45
     public function generate();
43 46
 
44 47
     /**
45 48
      * @param int $amount
49
+     * @return void
46 50
      */
47 51
     public function specifyAmount($amount);
48 52
 
49 53
     /**
50 54
      * @param int $codeLength
55
+     * @return void
51 56
      */
52 57
     public function specifyCodeLength($codeLength);
53 58
 
54 59
     /**
55 60
      * @param \DateTime $date
61
+     * @return void
56 62
      */
57 63
     public function setExpiresAt(\DateTime $date);
58 64
 
59 65
     /**
60 66
      * @param int $limit
67
+     * @return void
61 68
      */
62 69
     public function setUsageLimit($limit);
63 70
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ShippingMethod/UpdatePageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -23,7 +23,13 @@
 block discarded – undo
23 23
      */
24 24
     public function isCodeDisabled();
25 25
 
26
+    /**
27
+     * @return void
28
+     */
26 29
     public function enable();
27 30
 
31
+    /**
32
+     * @return void
33
+     */
28 34
     public function disable();
29 35
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/Zone/CreatePageInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -18,15 +18,20 @@  discard block
 block discarded – undo
18 18
  */
19 19
 interface CreatePageInterface extends BaseCreatePageInterface
20 20
 {
21
+    /**
22
+     * @return void
23
+     */
21 24
     public function addMember();
22 25
 
23 26
     /**
24 27
      * @param string $message
28
+     * @return boolean
25 29
      */
26 30
     public function checkValidationMessageForMembers($message);
27 31
 
28 32
     /**
29 33
      * @param $name
34
+     * @return void
30 35
      */
31 36
     public function chooseMember($name);
32 37
 
@@ -44,11 +49,13 @@  discard block
 block discarded – undo
44 49
 
45 50
     /**
46 51
      * @param string $name
52
+     * @return void
47 53
      */
48 54
     public function nameIt($name);
49 55
 
50 56
     /**
51 57
      * @param string $code
58
+     * @return void
52 59
      */
53 60
     public function specifyCode($code);
54 61
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Page.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@
 block discarded – undo
243 243
     }
244 244
 
245 245
     /**
246
-     * @param string|array $selector
246
+     * @param string $selector
247 247
      * @param SelectorsHandler $selectorsHandler
248 248
      *
249 249
      * @return string
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/LoginPageInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -25,15 +25,20 @@
 block discarded – undo
25 25
      */
26 26
     public function hasValidationErrorWith($message);
27 27
 
28
+    /**
29
+     * @return void
30
+     */
28 31
     public function logIn();
29 32
 
30 33
     /**
31 34
      * @param string $password
35
+     * @return void
32 36
      */
33 37
     public function specifyPassword($password);
34 38
 
35 39
     /**
36 40
      * @param string $userName
41
+     * @return void
37 42
      */
38 43
     public function specifyUserName($userName);
39 44
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/ProfileUpdatePageInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -21,19 +21,25 @@
 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
     /**
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/RegisterPageInterface.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -26,35 +26,44 @@
 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
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Account/ResetPasswordPageInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -26,10 +26,14 @@
 block discarded – undo
26 26
      */
27 27
     public function checkValidationMessageFor($element, $message);
28 28
 
29
+    /**
30
+     * @return void
31
+     */
29 32
     public function reset();
30 33
 
31 34
     /**
32 35
      * @param string $email
36
+     * @return void
33 37
      */
34 38
     public function specifyEmail($email);
35 39
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Cart/SummaryPageInterface.php 2 patches
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -63,12 +63,14 @@  discard block
 block discarded – undo
63 63
 
64 64
     /**
65 65
      * @param string $productName
66
+     * @return void
66 67
      */
67 68
     public function removeProduct($productName);
68 69
 
69 70
     /**
70 71
      * @param string $productName
71 72
      * @param int $quantity
73
+     * @return void
72 74
      */
73 75
     public function changeQuantity($productName, $quantity);
74 76
 
@@ -112,5 +114,8 @@  discard block
 block discarded – undo
112 114
      */
113 115
     public function getQuantity($productName);
114 116
 
117
+    /**
118
+     * @return void
119
+     */
115 120
     public function clearCart();
116 121
 }
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace Sylius\Behat\Page\Shop\Cart;
13 13
 
14 14
 use Sylius\Behat\Page\PageInterface;
15
-use Sylius\Component\Product\Model\ProductInterface;
16 15
 
17 16
 /**
18 17
  * @author Łukasz Chruściel <[email protected]>
Please login to merge, or discard this patch.