@@ -205,6 +205,7 @@ |
||
| 205 | 205 | * @Then the product :productName should appear in the shop |
| 206 | 206 | * @Then the product :productName should be in the shop |
| 207 | 207 | * @Then this product should still be named :productName |
| 208 | + * @param string $productName |
|
| 208 | 209 | */ |
| 209 | 210 | public function theProductShouldAppearInTheShop($productName) |
| 210 | 211 | { |
@@ -15,16 +15,16 @@ |
||
| 15 | 15 | use Sylius\Behat\NotificationType; |
| 16 | 16 | use Sylius\Behat\Page\Admin\Crud\CreatePageInterface; |
| 17 | 17 | use Sylius\Behat\Page\Admin\Crud\UpdatePageInterface; |
| 18 | +use Sylius\Behat\Page\Admin\ProductReview\IndexPageInterface as ProductReviewIndexPageInterface; |
|
| 18 | 19 | use Sylius\Behat\Page\Admin\Product\CreateConfigurableProductPageInterface; |
| 19 | 20 | use Sylius\Behat\Page\Admin\Product\CreateSimpleProductPageInterface; |
| 20 | 21 | use Sylius\Behat\Page\Admin\Product\IndexPageInterface; |
| 21 | 22 | use Sylius\Behat\Page\Admin\Product\UpdateConfigurableProductPageInterface; |
| 22 | 23 | use Sylius\Behat\Page\Admin\Product\UpdateSimpleProductPageInterface; |
| 23 | -use Sylius\Behat\Page\Admin\ProductReview\IndexPageInterface as ProductReviewIndexPageInterface; |
|
| 24 | 24 | use Sylius\Behat\Service\NotificationCheckerInterface; |
| 25 | 25 | use Sylius\Behat\Service\Resolver\CurrentProductPageResolverInterface; |
| 26 | -use Sylius\Component\Core\Model\ProductInterface; |
|
| 27 | 26 | use Sylius\Behat\Service\SharedStorageInterface; |
| 27 | +use Sylius\Component\Core\Model\ProductInterface; |
|
| 28 | 28 | use Sylius\Component\Taxonomy\Model\TaxonInterface; |
| 29 | 29 | use Webmozart\Assert\Assert; |
| 30 | 30 | |
@@ -150,6 +150,7 @@ discard block |
||
| 150 | 150 | |
| 151 | 151 | /** |
| 152 | 152 | * @Then the :productVariantCode variant of the :product product should appear in the shop |
| 153 | + * @param string $productVariantCode |
|
| 153 | 154 | */ |
| 154 | 155 | public function theProductVariantShouldAppearInTheShop($productVariantCode, ProductInterface $product) |
| 155 | 156 | { |
@@ -451,7 +452,7 @@ discard block |
||
| 451 | 452 | |
| 452 | 453 | /** |
| 453 | 454 | * @param string $element |
| 454 | - * @param $message |
|
| 455 | + * @param string $message |
|
| 455 | 456 | */ |
| 456 | 457 | private function assertValidationMessage($element, $message) |
| 457 | 458 | { |
@@ -288,7 +288,7 @@ discard block |
||
| 288 | 288 | { |
| 289 | 289 | Assert::true( |
| 290 | 290 | $this->indexPage->isSingleResourceWithSpecificElementOnPage(['name' => $productVariantName], sprintf('td > div.ui.label:contains("%s")', $quantity)), |
| 291 | - sprintf('The product variant %s should have %s items on hand, but it does not.',$productVariantName, $quantity) |
|
| 291 | + sprintf('The product variant %s should have %s items on hand, but it does not.', $productVariantName, $quantity) |
|
| 292 | 292 | ); |
| 293 | 293 | } |
| 294 | 294 | |
@@ -301,7 +301,7 @@ discard block |
||
| 301 | 301 | |
| 302 | 302 | Assert::true( |
| 303 | 303 | $this->indexPage->isSingleResourceWithSpecificElementOnPage(['name' => $productVariantName], sprintf('td > div.ui.label:contains("%s")', $quantity)), |
| 304 | - sprintf('The product variant %s should have %s items on hand, but it does not.',$productVariantName, $quantity) |
|
| 304 | + sprintf('The product variant %s should have %s items on hand, but it does not.', $productVariantName, $quantity) |
|
| 305 | 305 | ); |
| 306 | 306 | } |
| 307 | 307 | |
@@ -15,9 +15,9 @@ |
||
| 15 | 15 | use Sylius\Behat\Page\Admin\Channel\IndexPageInterface; |
| 16 | 16 | use Sylius\Behat\Page\Admin\Channel\UpdatePageInterface; |
| 17 | 17 | use Sylius\Behat\Page\Shop\HomePageInterface; |
| 18 | +use Sylius\Behat\Service\SharedStorageInterface; |
|
| 18 | 19 | use Sylius\Bundle\ThemeBundle\Model\ThemeInterface; |
| 19 | 20 | use Sylius\Component\Core\Model\ChannelInterface; |
| 20 | -use Sylius\Behat\Service\SharedStorageInterface; |
|
| 21 | 21 | use Webmozart\Assert\Assert; |
| 22 | 22 | |
| 23 | 23 | /** |
@@ -15,9 +15,9 @@ |
||
| 15 | 15 | use Sylius\Behat\Page\Admin\Channel\IndexPageInterface; |
| 16 | 16 | use Sylius\Behat\Page\Admin\Channel\UpdatePageInterface; |
| 17 | 17 | use Sylius\Behat\Page\Shop\HomePageInterface; |
| 18 | +use Sylius\Behat\Service\SharedStorageInterface; |
|
| 18 | 19 | use Sylius\Bundle\ThemeBundle\Model\ThemeInterface; |
| 19 | 20 | use Sylius\Component\Core\Model\ChannelInterface; |
| 20 | -use Sylius\Behat\Service\SharedStorageInterface; |
|
| 21 | 21 | use Webmozart\Assert\Assert; |
| 22 | 22 | |
| 23 | 23 | /** |
@@ -25,15 +25,20 @@ |
||
| 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 | } |
@@ -39,25 +39,32 @@ |
||
| 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 | } |
@@ -36,11 +36,13 @@ discard block |
||
| 36 | 36 | |
| 37 | 37 | /** |
| 38 | 38 | * @param string $locale |
| 39 | + * @return void |
|
| 39 | 40 | */ |
| 40 | 41 | public function setCurrentLocale($locale); |
| 41 | 42 | |
| 42 | 43 | /** |
| 43 | 44 | * @param string $locale |
| 45 | + * @return void |
|
| 44 | 46 | */ |
| 45 | 47 | public function setFallbackLocale($locale); |
| 46 | 48 | |
@@ -51,11 +53,13 @@ discard block |
||
| 51 | 53 | |
| 52 | 54 | /** |
| 53 | 55 | * @param TranslationInterface $translation |
| 56 | + * @return void |
|
| 54 | 57 | */ |
| 55 | 58 | public function addTranslation(TranslationInterface $translation); |
| 56 | 59 | |
| 57 | 60 | /** |
| 58 | 61 | * @param TranslationInterface $translation |
| 62 | + * @return void |
|
| 59 | 63 | */ |
| 60 | 64 | public function removeTranslation(TranslationInterface $translation); |
| 61 | 65 | } |
@@ -18,72 +18,91 @@ |
||
| 18 | 18 | */ |
| 19 | 19 | interface CreatePageInterface extends BaseCreatePageInterface |
| 20 | 20 | { |
| 21 | + /** |
|
| 22 | + * @return void |
|
| 23 | + */ |
|
| 21 | 24 | public function enable(); |
| 22 | 25 | |
| 26 | + /** |
|
| 27 | + * @return void |
|
| 28 | + */ |
|
| 23 | 29 | public function disable(); |
| 24 | 30 | |
| 25 | 31 | /** |
| 26 | 32 | * @param string $name |
| 33 | + * @return void |
|
| 27 | 34 | */ |
| 28 | 35 | public function nameIt($name); |
| 29 | 36 | |
| 30 | 37 | /** |
| 31 | 38 | * @param string $code |
| 39 | + * @return void |
|
| 32 | 40 | */ |
| 33 | 41 | public function specifyCode($code); |
| 34 | 42 | |
| 35 | 43 | /** |
| 36 | 44 | * @param string $description |
| 45 | + * @return void |
|
| 37 | 46 | */ |
| 38 | 47 | public function describeItAs($description); |
| 39 | 48 | |
| 40 | 49 | /** |
| 41 | 50 | * @param string $hostname |
| 51 | + * @return void |
|
| 42 | 52 | */ |
| 43 | 53 | public function setHostname($hostname); |
| 44 | 54 | |
| 45 | 55 | /** |
| 46 | 56 | * @param string $color |
| 57 | + * @return void |
|
| 47 | 58 | */ |
| 48 | 59 | public function defineColor($color); |
| 49 | 60 | |
| 50 | 61 | /** |
| 51 | 62 | * @param string $language |
| 63 | + * @return void |
|
| 52 | 64 | */ |
| 53 | 65 | public function chooseLocale($language); |
| 54 | 66 | |
| 55 | 67 | /** |
| 56 | 68 | * @param string $currencyCode |
| 69 | + * @return void |
|
| 57 | 70 | */ |
| 58 | 71 | public function chooseCurrency($currencyCode); |
| 59 | 72 | |
| 60 | 73 | /** |
| 61 | 74 | * @param string $shippingMethod |
| 75 | + * @return void |
|
| 62 | 76 | */ |
| 63 | 77 | public function chooseShippingMethod($shippingMethod); |
| 64 | 78 | |
| 65 | 79 | /** |
| 66 | 80 | * @param string $paymentMethod |
| 81 | + * @return void |
|
| 67 | 82 | */ |
| 68 | 83 | public function choosePaymentMethod($paymentMethod); |
| 69 | 84 | |
| 70 | 85 | /** |
| 71 | 86 | * @param string $taxZone |
| 87 | + * @return void |
|
| 72 | 88 | */ |
| 73 | 89 | public function chooseDefaultTaxZone($taxZone); |
| 74 | 90 | |
| 75 | 91 | /** |
| 76 | 92 | * @param string $locale |
| 93 | + * @return void |
|
| 77 | 94 | */ |
| 78 | 95 | public function chooseDefaultLocale($locale); |
| 79 | 96 | |
| 80 | 97 | /** |
| 81 | 98 | * @param string $currency |
| 99 | + * @return void |
|
| 82 | 100 | */ |
| 83 | 101 | public function chooseDefaultCurrency($currency); |
| 84 | 102 | |
| 85 | 103 | /** |
| 86 | 104 | * @param string $taxCalculationStrategy |
| 105 | + * @return void |
|
| 87 | 106 | */ |
| 88 | 107 | public function chooseTaxCalculationStrategy($taxCalculationStrategy); |
| 89 | 108 | } |
@@ -19,17 +19,25 @@ discard block |
||
| 19 | 19 | */ |
| 20 | 20 | interface UpdatePageInterface extends BaseUpdatePageInterface |
| 21 | 21 | { |
| 22 | + /** |
|
| 23 | + * @return void |
|
| 24 | + */ |
|
| 22 | 25 | public function enable(); |
| 23 | 26 | |
| 27 | + /** |
|
| 28 | + * @return void |
|
| 29 | + */ |
|
| 24 | 30 | public function disable(); |
| 25 | 31 | |
| 26 | 32 | /** |
| 27 | 33 | * @param string $themeName |
| 34 | + * @return void |
|
| 28 | 35 | */ |
| 29 | 36 | public function setTheme($themeName); |
| 30 | 37 | |
| 31 | 38 | /** |
| 32 | 39 | * @throws ElementNotFoundException |
| 40 | + * @return void |
|
| 33 | 41 | */ |
| 34 | 42 | public function unsetTheme(); |
| 35 | 43 | |
@@ -40,6 +48,7 @@ discard block |
||
| 40 | 48 | |
| 41 | 49 | /** |
| 42 | 50 | * @param string $language |
| 51 | + * @return void |
|
| 43 | 52 | */ |
| 44 | 53 | public function chooseLocale($language); |
| 45 | 54 | |
@@ -52,6 +61,7 @@ discard block |
||
| 52 | 61 | |
| 53 | 62 | /** |
| 54 | 63 | * @param string $currencyCode |
| 64 | + * @return void |
|
| 55 | 65 | */ |
| 56 | 66 | public function chooseCurrency($currencyCode); |
| 57 | 67 | |
@@ -64,6 +74,7 @@ discard block |
||
| 64 | 74 | |
| 65 | 75 | /** |
| 66 | 76 | * @param string $shippingMethod |
| 77 | + * @return void |
|
| 67 | 78 | */ |
| 68 | 79 | public function chooseShippingMethod($shippingMethod); |
| 69 | 80 | |
@@ -76,16 +87,19 @@ discard block |
||
| 76 | 87 | |
| 77 | 88 | /** |
| 78 | 89 | * @param string $paymentMethod |
| 90 | + * @return void |
|
| 79 | 91 | */ |
| 80 | 92 | public function choosePaymentMethod($paymentMethod); |
| 81 | 93 | |
| 82 | 94 | /** |
| 83 | 95 | * @param string $taxZone |
| 96 | + * @return void |
|
| 84 | 97 | */ |
| 85 | 98 | public function chooseDefaultTaxZone($taxZone); |
| 86 | 99 | |
| 87 | 100 | /** |
| 88 | 101 | * @param string $taxCalculationStrategy |
| 102 | + * @return void |
|
| 89 | 103 | */ |
| 90 | 104 | public function chooseTaxCalculationStrategy($taxCalculationStrategy); |
| 91 | 105 | |
@@ -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 | } |