@@ -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 | } |
@@ -27,6 +27,7 @@ |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param string $value |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setValue($value); |
| 32 | 33 | } |
@@ -12,7 +12,6 @@ |
||
| 12 | 12 | namespace Sylius\Behat\Page\Shop\Account; |
| 13 | 13 | |
| 14 | 14 | use Sylius\Behat\Page\SymfonyPageInterface; |
| 15 | -use Sylius\Component\User\Model\UserInterface; |
|
| 16 | 15 | |
| 17 | 16 | /** |
| 18 | 17 | * @author Jan Góralski <[email protected]> |
@@ -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 | |
@@ -304,7 +304,7 @@ discard block |
||
| 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 |
||
| 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) |
@@ -18,8 +18,6 @@ |
||
| 18 | 18 | use Sylius\Behat\Page\SymfonyPage; |
| 19 | 19 | use Sylius\Component\Core\Factory\AddressFactoryInterface; |
| 20 | 20 | use Sylius\Component\Core\Model\AddressInterface; |
| 21 | -use Sylius\Component\Locale\Context\LocaleContextInterface; |
|
| 22 | -use Symfony\Component\Intl\Intl; |
|
| 23 | 21 | use Symfony\Component\Routing\RouterInterface; |
| 24 | 22 | use Webmozart\Assert\Assert; |
| 25 | 23 | |
@@ -347,7 +347,7 @@ |
||
| 347 | 347 | Pagerfanta $results, |
| 348 | 348 | $template, |
| 349 | 349 | $page |
| 350 | - ){ |
|
| 350 | + ) { |
|
| 351 | 351 | $results->setCurrentPage($page, true, true); |
| 352 | 352 | $results->setMaxPerPage($this->config->getPaginationMaxPerPage()); |
| 353 | 353 | |
@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | array $parameters, |
| 48 | 48 | RouterInterface $router, |
| 49 | 49 | AddressFactoryInterface $addressFactory |
| 50 | - ){ |
|
| 50 | + ) { |
|
| 51 | 51 | parent::__construct($session, $parameters, $router); |
| 52 | 52 | |
| 53 | 53 | $this->addressFactory = $addressFactory; |
@@ -412,7 +412,7 @@ discard block |
||
| 412 | 412 | */ |
| 413 | 413 | private function waitForElement($timeout, $elementName) |
| 414 | 414 | { |
| 415 | - return $this->getDocument()->waitFor($timeout, function () use ($elementName){ |
|
| 415 | + return $this->getDocument()->waitFor($timeout, function () use ($elementName) { |
|
| 416 | 416 | return $this->hasElement($elementName); |
| 417 | 417 | }); |
| 418 | 418 | } |
@@ -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 | /** |
@@ -20,6 +20,7 @@ discard block |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * @param string $shippingMethod |
| 23 | + * @return void |
|
| 23 | 24 | */ |
| 24 | 25 | public function selectShippingMethod($shippingMethod); |
| 25 | 26 | |
@@ -50,10 +51,19 @@ discard block |
||
| 50 | 51 | */ |
| 51 | 52 | public function getItemSubtotal($itemName); |
| 52 | 53 | |
| 54 | + /** |
|
| 55 | + * @return void |
|
| 56 | + */ |
|
| 53 | 57 | public function nextStep(); |
| 54 | 58 | |
| 59 | + /** |
|
| 60 | + * @return void |
|
| 61 | + */ |
|
| 55 | 62 | public function changeAddress(); |
| 56 | 63 | |
| 64 | + /** |
|
| 65 | + * @return void |
|
| 66 | + */ |
|
| 57 | 67 | public function changeAddressByStepLabel(); |
| 58 | 68 | |
| 59 | 69 | /** |
@@ -27,6 +27,7 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param OptionInterface $option |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setOption(OptionInterface $option = null); |
| 32 | 33 | |
@@ -41,6 +42,7 @@ discard block |
||
| 41 | 42 | * Set internal value. |
| 42 | 43 | * |
| 43 | 44 | * @param string $value |
| 45 | + * @return void |
|
| 44 | 46 | */ |
| 45 | 47 | public function setValue($value); |
| 46 | 48 | |
@@ -26,10 +26,14 @@ |
||
| 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 | } |
@@ -27,6 +27,7 @@ |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param string $value |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setValue($value); |
| 32 | 33 | } |