Completed
Branch master (429264)
by Kamil
37:02
created
src/Sylius/Behat/Page/Shop/Account/ChangePasswordPageInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -21,16 +21,19 @@
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @param string $password
24
+     * @return void
24 25
      */
25 26
     public function specifyCurrentPassword($password);
26 27
 
27 28
     /**
28 29
      * @param string $password
30
+     * @return void
29 31
      */
30 32
     public function specifyNewPassword($password);
31 33
 
32 34
     /**
33 35
      * @param string $password
36
+     * @return void
34 37
      */
35 38
     public function specifyConfirmationPassword($password);
36 39
 
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.
src/Sylius/Behat/Page/Shop/Checkout/AddressingPageInterface.php 1 patch
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -21,6 +21,7 @@  discard block
 block discarded – undo
21 21
 {
22 22
     /**
23 23
      * @throws \RuntimeException
24
+     * @return void
24 25
      */
25 26
     public function chooseDifferentBillingAddress();
26 27
 
@@ -39,11 +40,13 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param AddressInterface $billingAddress
43
+     * @return void
42 44
      */
43 45
     public function specifyBillingAddress(AddressInterface $billingAddress);
44 46
 
45 47
     /**
46 48
      * @param AddressInterface $shippingAddress
49
+     * @return void
47 50
      */
48 51
     public function specifyShippingAddress(AddressInterface $shippingAddress);
49 52
 
@@ -52,17 +55,25 @@  discard block
 block discarded – undo
52 55
      */
53 56
     public function canSignIn();
54 57
 
58
+    /**
59
+     * @return void
60
+     */
55 61
     public function signIn();
56 62
 
57 63
     /**
58 64
      * @param string $email
65
+     * @return void
59 66
      */
60 67
     public function specifyEmail($email);
61 68
 
62 69
     /**
63 70
      * @param string $password
71
+     * @return void
64 72
      */
65 73
     public function specifyPassword($password);
66 74
 
75
+    /**
76
+     * @return void
77
+     */
67 78
     public function nextStep();
68 79
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/AddressingStepInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -23,11 +23,13 @@
 block discarded – undo
23 23
      * @param array $addressingDetails
24 24
      *
25 25
      * @throws ElementNotFoundException
26
+     * @return void
26 27
      */
27 28
     public function fillAddressingDetails(array $addressingDetails);
28 29
 
29 30
     /**
30 31
      * @throws ElementNotFoundException
32
+     * @return void
31 33
      */
32 34
     public function continueCheckout();
33 35
 }
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Checkout/FinalizeStepInterface.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
     /**
23 23
      * @throws ElementNotFoundException
24
+     * @return void
24 25
      */
25 26
     public function confirmOrder();
26 27
 }
Please login to merge, or discard this patch.