@@ -26,37 +26,49 @@ |
||
| 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 | } |
@@ -70,17 +70,20 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -75,6 +75,7 @@ discard block |
||
| 75 | 75 | |
| 76 | 76 | /** |
| 77 | 77 | * @param string $notes |
| 78 | + * @return void |
|
| 78 | 79 | */ |
| 79 | 80 | public function addNotes($notes); |
| 80 | 81 | |
@@ -135,12 +136,24 @@ discard block |
||
| 135 | 136 | */ |
| 136 | 137 | public function hasProductOutOfStockValidationMessage(ProductInterface $product); |
| 137 | 138 | |
| 139 | + /** |
|
| 140 | + * @return void |
|
| 141 | + */ |
|
| 138 | 142 | public function changeAddress(); |
| 139 | 143 | |
| 144 | + /** |
|
| 145 | + * @return void |
|
| 146 | + */ |
|
| 140 | 147 | public function changeShippingMethod(); |
| 141 | 148 | |
| 149 | + /** |
|
| 150 | + * @return void |
|
| 151 | + */ |
|
| 142 | 152 | public function changePaymentMethod(); |
| 143 | 153 | |
| 154 | + /** |
|
| 155 | + * @return void |
|
| 156 | + */ |
|
| 144 | 157 | public function confirmOrder(); |
| 145 | 158 | |
| 146 | 159 | /** |
@@ -20,6 +20,7 @@ discard block |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * @param string $paymentMethod |
| 23 | + * @return void |
|
| 23 | 24 | */ |
| 24 | 25 | public function selectPaymentMethod($paymentMethod); |
| 25 | 26 | |
@@ -37,12 +38,24 @@ discard block |
||
| 37 | 38 | */ |
| 38 | 39 | public function getItemSubtotal($itemName); |
| 39 | 40 | |
| 41 | + /** |
|
| 42 | + * @return void |
|
| 43 | + */ |
|
| 40 | 44 | public function nextStep(); |
| 41 | 45 | |
| 46 | + /** |
|
| 47 | + * @return void |
|
| 48 | + */ |
|
| 42 | 49 | public function changeShippingMethod(); |
| 43 | 50 | |
| 51 | + /** |
|
| 52 | + * @return void |
|
| 53 | + */ |
|
| 44 | 54 | public function changeShippingMethodByStepLabel(); |
| 45 | 55 | |
| 56 | + /** |
|
| 57 | + * @return void |
|
| 58 | + */ |
|
| 46 | 59 | public function changeAddressByStepLabel(); |
| 47 | 60 | |
| 48 | 61 | /** |
@@ -101,6 +101,9 @@ |
||
| 101 | 101 | return $webDirectory; |
| 102 | 102 | } |
| 103 | 103 | |
| 104 | + /** |
|
| 105 | + * @param string $webDirectory |
|
| 106 | + */ |
|
| 104 | 107 | private function assertFileContent($lines, $webDirectory) |
| 105 | 108 | { |
| 106 | 109 | foreach ($lines as $line) { |
@@ -20,24 +20,31 @@ |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * @param string $title |
| 23 | + * @return void |
|
| 23 | 24 | */ |
| 24 | 25 | public function titleReview($title); |
| 25 | 26 | |
| 26 | 27 | /** |
| 27 | 28 | * @param string $comment |
| 29 | + * @return void |
|
| 28 | 30 | */ |
| 29 | 31 | public function setComment($comment); |
| 30 | 32 | |
| 31 | 33 | /** |
| 32 | 34 | * @param string $author |
| 35 | + * @return void |
|
| 33 | 36 | */ |
| 34 | 37 | public function setAuthor($author); |
| 35 | 38 | |
| 36 | 39 | /** |
| 37 | 40 | * @param int $rate |
| 41 | + * @return void |
|
| 38 | 42 | */ |
| 39 | 43 | public function rateReview($rate); |
| 40 | 44 | |
| 45 | + /** |
|
| 46 | + * @return void |
|
| 47 | + */ |
|
| 41 | 48 | public function submitReview(); |
| 42 | 49 | |
| 43 | 50 | /** |
@@ -21,6 +21,7 @@ discard block |
||
| 21 | 21 | { |
| 22 | 22 | /** |
| 23 | 23 | * @throws \RuntimeException |
| 24 | + * @return void |
|
| 24 | 25 | */ |
| 25 | 26 | public function chooseDifferentBillingAddress(); |
| 26 | 27 | |
@@ -39,21 +40,25 @@ discard block |
||
| 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 string $province |
| 49 | + * @return void |
|
| 47 | 50 | */ |
| 48 | 51 | public function selectBillingAddressProvince($province); |
| 49 | 52 | |
| 50 | 53 | /** |
| 51 | 54 | * @param AddressInterface $shippingAddress |
| 55 | + * @return void |
|
| 52 | 56 | */ |
| 53 | 57 | public function specifyShippingAddress(AddressInterface $shippingAddress); |
| 54 | 58 | |
| 55 | 59 | /** |
| 56 | 60 | * @param string $province |
| 61 | + * @return void |
|
| 57 | 62 | */ |
| 58 | 63 | public function selectShippingAddressProvince($province); |
| 59 | 64 | |
@@ -62,15 +67,20 @@ discard block |
||
| 62 | 67 | */ |
| 63 | 68 | public function canSignIn(); |
| 64 | 69 | |
| 70 | + /** |
|
| 71 | + * @return void |
|
| 72 | + */ |
|
| 65 | 73 | public function signIn(); |
| 66 | 74 | |
| 67 | 75 | /** |
| 68 | 76 | * @param string $email |
| 77 | + * @return void |
|
| 69 | 78 | */ |
| 70 | 79 | public function specifyEmail($email); |
| 71 | 80 | |
| 72 | 81 | /** |
| 73 | 82 | * @param string $password |
| 83 | + * @return void |
|
| 74 | 84 | */ |
| 75 | 85 | public function specifyPassword($password); |
| 76 | 86 | |
@@ -86,17 +96,25 @@ discard block |
||
| 86 | 96 | */ |
| 87 | 97 | public function getShippingAddressCountry(); |
| 88 | 98 | |
| 99 | + /** |
|
| 100 | + * @return void |
|
| 101 | + */ |
|
| 89 | 102 | public function nextStep(); |
| 90 | 103 | |
| 104 | + /** |
|
| 105 | + * @return void |
|
| 106 | + */ |
|
| 91 | 107 | public function backToStore(); |
| 92 | 108 | |
| 93 | 109 | /** |
| 94 | 110 | * @param string $provinceName |
| 111 | + * @return void |
|
| 95 | 112 | */ |
| 96 | 113 | public function specifyBillingAddressProvince($provinceName); |
| 97 | 114 | |
| 98 | 115 | /** |
| 99 | 116 | * @param string $provinceName |
| 117 | + * @return void |
|
| 100 | 118 | */ |
| 101 | 119 | public function specifyShippingAddressProvince($provinceName); |
| 102 | 120 | |
@@ -112,11 +130,13 @@ discard block |
||
| 112 | 130 | |
| 113 | 131 | /** |
| 114 | 132 | * @param AddressInterface $address |
| 133 | + * @return void |
|
| 115 | 134 | */ |
| 116 | 135 | public function selectShippingAddressFromAddressBook(AddressInterface $address); |
| 117 | 136 | |
| 118 | 137 | /** |
| 119 | 138 | * @param AddressInterface $address |
| 139 | + * @return void |
|
| 120 | 140 | */ |
| 121 | 141 | public function selectBillingAddressFromAddressBook(AddressInterface $address); |
| 122 | 142 | |
@@ -22,6 +22,7 @@ discard block |
||
| 22 | 22 | { |
| 23 | 23 | /** |
| 24 | 24 | * @param string $customerName |
| 25 | + * @return boolean |
|
| 25 | 26 | */ |
| 26 | 27 | public function hasCustomer($customerName); |
| 27 | 28 | |
@@ -56,6 +57,7 @@ discard block |
||
| 56 | 57 | |
| 57 | 58 | /** |
| 58 | 59 | * @param string $code |
| 60 | + * @return void |
|
| 59 | 61 | */ |
| 60 | 62 | public function specifyTrackingCode($code); |
| 61 | 63 | |
@@ -68,6 +70,7 @@ discard block |
||
| 68 | 70 | |
| 69 | 71 | /** |
| 70 | 72 | * @param OrderInterface $order |
| 73 | + * @return void |
|
| 71 | 74 | */ |
| 72 | 75 | public function shipOrder(OrderInterface $order); |
| 73 | 76 | |
@@ -87,11 +90,13 @@ discard block |
||
| 87 | 90 | |
| 88 | 91 | /** |
| 89 | 92 | * @param OrderInterface $order |
| 93 | + * @return void |
|
| 90 | 94 | */ |
| 91 | 95 | public function completeOrderLastPayment(OrderInterface $order); |
| 92 | 96 | |
| 93 | 97 | /** |
| 94 | 98 | * @param OrderInterface $order |
| 99 | + * @return void |
|
| 95 | 100 | */ |
| 96 | 101 | public function refundOrderLastPayment(OrderInterface $order); |
| 97 | 102 | |
@@ -234,8 +239,14 @@ discard block |
||
| 234 | 239 | */ |
| 235 | 240 | public function getPaymentState(); |
| 236 | 241 | |
| 242 | + /** |
|
| 243 | + * @return void |
|
| 244 | + */ |
|
| 237 | 245 | public function cancelOrder(); |
| 238 | 246 | |
| 247 | + /** |
|
| 248 | + * @return void |
|
| 249 | + */ |
|
| 239 | 250 | public function deleteOrder(); |
| 240 | 251 | |
| 241 | 252 | /** |
@@ -33,11 +33,12 @@ discard block |
||
| 33 | 33 | /** |
| 34 | 34 | * @param string $key |
| 35 | 35 | * @param mixed $resource |
| 36 | + * @return void |
|
| 36 | 37 | */ |
| 37 | 38 | public function set($key, $resource); |
| 38 | 39 | |
| 39 | 40 | /** |
| 40 | - * @return mixed |
|
| 41 | + * @return string |
|
| 41 | 42 | */ |
| 42 | 43 | public function getLatestResource(); |
| 43 | 44 | |
@@ -45,6 +46,7 @@ discard block |
||
| 45 | 46 | * @param array $clipboard |
| 46 | 47 | * |
| 47 | 48 | * @throws \RuntimeException |
| 49 | + * @return void |
|
| 48 | 50 | */ |
| 49 | 51 | public function setClipboard(array $clipboard); |
| 50 | 52 | } |