@@ -18,6 +18,9 @@ |
||
| 18 | 18 | */ |
| 19 | 19 | interface ThankYouPageInterface extends SymfonyPageInterface |
| 20 | 20 | { |
| 21 | + /** |
|
| 22 | + * @return void |
|
| 23 | + */ |
|
| 21 | 24 | public function goToOrderDetails(); |
| 22 | 25 | |
| 23 | 26 | /** |
@@ -25,22 +25,26 @@ discard block |
||
| 25 | 25 | /** |
| 26 | 26 | * @param string $channelName |
| 27 | 27 | * @param int $price |
| 28 | + * @return void |
|
| 28 | 29 | */ |
| 29 | 30 | public function specifyPrice($channelName, $price); |
| 30 | 31 | |
| 31 | 32 | /** |
| 32 | 33 | * @param string $channelName |
| 33 | 34 | * @param int $originalPrice |
| 35 | + * @return void |
|
| 34 | 36 | */ |
| 35 | 37 | public function specifyOriginalPrice($channelName, $originalPrice); |
| 36 | 38 | |
| 37 | 39 | /** |
| 38 | 40 | * @param string $name |
| 41 | + * @return void |
|
| 39 | 42 | */ |
| 40 | 43 | public function choosePricingCalculator($name); |
| 41 | 44 | |
| 42 | 45 | /** |
| 43 | 46 | * @param string $channelName |
| 47 | + * @return void |
|
| 44 | 48 | */ |
| 45 | 49 | public function checkChannel($channelName); |
| 46 | 50 | |
@@ -48,23 +52,27 @@ discard block |
||
| 48 | 52 | * @param int $price |
| 49 | 53 | * @param ChannelInterface $channel |
| 50 | 54 | * @param CurrencyInterface $currency |
| 55 | + * @return void |
|
| 51 | 56 | */ |
| 52 | 57 | public function specifyPriceForChannelAndCurrency($price, ChannelInterface $channel, CurrencyInterface $currency); |
| 53 | 58 | |
| 54 | 59 | /** |
| 55 | 60 | * @param string $code |
| 61 | + * @return void |
|
| 56 | 62 | */ |
| 57 | 63 | public function specifyCode($code); |
| 58 | 64 | |
| 59 | 65 | /** |
| 60 | 66 | * @param string $name |
| 61 | 67 | * @param string $localeCode |
| 68 | + * @return void |
|
| 62 | 69 | */ |
| 63 | 70 | public function nameItIn($name, $localeCode); |
| 64 | 71 | |
| 65 | 72 | /** |
| 66 | 73 | * @param string $slug |
| 67 | 74 | * @param string $locale |
| 75 | + * @return void |
|
| 68 | 76 | */ |
| 69 | 77 | public function specifySlugIn($slug, $locale); |
| 70 | 78 | |
@@ -72,45 +80,53 @@ discard block |
||
| 72 | 80 | * @param string $attributeName |
| 73 | 81 | * @param string $value |
| 74 | 82 | * @param string $localeCode |
| 83 | + * @return void |
|
| 75 | 84 | */ |
| 76 | 85 | public function addAttribute($attributeName, $value, $localeCode); |
| 77 | 86 | |
| 78 | 87 | /** |
| 79 | 88 | * @param string $attributeName |
| 80 | 89 | * @param string $localeCode |
| 90 | + * @return void |
|
| 81 | 91 | */ |
| 82 | 92 | public function removeAttribute($attributeName, $localeCode); |
| 83 | 93 | |
| 84 | 94 | /** |
| 85 | 95 | * @param string $path |
| 86 | 96 | * @param string $type |
| 97 | + * @return void |
|
| 87 | 98 | */ |
| 88 | 99 | public function attachImage($path, $type = null); |
| 89 | 100 | |
| 90 | 101 | /** |
| 91 | 102 | * @param ProductAssociationTypeInterface $productAssociationType |
| 92 | 103 | * @param string[] $productsNames |
| 104 | + * @return void |
|
| 93 | 105 | */ |
| 94 | 106 | public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames); |
| 95 | 107 | |
| 96 | 108 | /** |
| 97 | 109 | * @param string $productName |
| 98 | 110 | * @param ProductAssociationTypeInterface $productAssociationType |
| 111 | + * @return void |
|
| 99 | 112 | */ |
| 100 | 113 | public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType); |
| 101 | 114 | |
| 102 | 115 | /** |
| 103 | 116 | * @param string $locale |
| 117 | + * @return void |
|
| 104 | 118 | */ |
| 105 | 119 | public function activateLanguageTab($locale); |
| 106 | 120 | |
| 107 | 121 | /** |
| 108 | 122 | * @param string $shippingCategoryName |
| 123 | + * @return void |
|
| 109 | 124 | */ |
| 110 | 125 | public function selectShippingCategory($shippingCategoryName); |
| 111 | 126 | |
| 112 | 127 | /** |
| 113 | 128 | * @param bool $isShippingRequired |
| 129 | + * @return void |
|
| 114 | 130 | */ |
| 115 | 131 | public function setShippingRequired($isShippingRequired); |
| 116 | 132 | } |
@@ -24,12 +24,14 @@ discard block |
||
| 24 | 24 | /** |
| 25 | 25 | * @param int $price |
| 26 | 26 | * @param string $channelName |
| 27 | + * @return void |
|
| 27 | 28 | */ |
| 28 | 29 | public function specifyPrice($price, $channelName); |
| 29 | 30 | |
| 30 | 31 | /** |
| 31 | 32 | * @param int $originalPrice |
| 32 | 33 | * @param string $channelName |
| 34 | + * @return void |
|
| 33 | 35 | */ |
| 34 | 36 | public function specifyOriginalPrice($originalPrice, $channelName); |
| 35 | 37 | |
@@ -38,33 +40,39 @@ discard block |
||
| 38 | 40 | * @param int $width |
| 39 | 41 | * @param int $depth |
| 40 | 42 | * @param int $weight |
| 43 | + * @return void |
|
| 41 | 44 | */ |
| 42 | 45 | public function specifyHeightWidthDepthAndWeight($height, $width, $depth, $weight); |
| 43 | 46 | |
| 44 | 47 | /** |
| 45 | 48 | * @param string $code |
| 49 | + * @return void |
|
| 46 | 50 | */ |
| 47 | 51 | public function specifyCode($code); |
| 48 | 52 | |
| 49 | 53 | /** |
| 50 | 54 | * @param int $currentStock |
| 55 | + * @return void |
|
| 51 | 56 | */ |
| 52 | 57 | public function specifyCurrentStock($currentStock); |
| 53 | 58 | |
| 54 | 59 | /** |
| 55 | 60 | * @param string $name |
| 56 | 61 | * @param string $language |
| 62 | + * @return void |
|
| 57 | 63 | */ |
| 58 | 64 | public function nameItIn($name, $language); |
| 59 | 65 | |
| 60 | 66 | /** |
| 61 | 67 | * @param string $optionName |
| 62 | 68 | * @param string $optionValue |
| 69 | + * @return void |
|
| 63 | 70 | */ |
| 64 | 71 | public function selectOption($optionName, $optionValue); |
| 65 | 72 | |
| 66 | 73 | /** |
| 67 | 74 | * @param string $name |
| 75 | + * @return void |
|
| 68 | 76 | */ |
| 69 | 77 | public function choosePricingCalculator($name); |
| 70 | 78 | |
@@ -72,6 +80,7 @@ discard block |
||
| 72 | 80 | * @param int $price |
| 73 | 81 | * @param ChannelInterface $channel |
| 74 | 82 | * @param CurrencyInterface $currency |
| 83 | + * @return void |
|
| 75 | 84 | */ |
| 76 | 85 | public function specifyPriceForChannelAndCurrency($price, ChannelInterface $channel, CurrencyInterface $currency); |
| 77 | 86 | |
@@ -82,6 +91,7 @@ discard block |
||
| 82 | 91 | |
| 83 | 92 | /** |
| 84 | 93 | * @param string $shippingCategoryName |
| 94 | + * @return void |
|
| 85 | 95 | */ |
| 86 | 96 | public function selectShippingCategory($shippingCategoryName); |
| 87 | 97 | |
@@ -92,6 +102,7 @@ discard block |
||
| 92 | 102 | |
| 93 | 103 | /** |
| 94 | 104 | * @param bool $isShippingRequired |
| 105 | + * @return void |
|
| 95 | 106 | */ |
| 96 | 107 | public function setShippingRequired($isShippingRequired); |
| 97 | 108 | } |
@@ -27,11 +27,18 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param int $price |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function specifyPrice($price); |
| 32 | 33 | |
| 34 | + /** |
|
| 35 | + * @return void |
|
| 36 | + */ |
|
| 33 | 37 | public function disableTracking(); |
| 34 | 38 | |
| 39 | + /** |
|
| 40 | + * @return void |
|
| 41 | + */ |
|
| 35 | 42 | public function enableTracking(); |
| 36 | 43 | |
| 37 | 44 | /** |
@@ -70,6 +77,7 @@ discard block |
||
| 70 | 77 | |
| 71 | 78 | /** |
| 72 | 79 | * @param int $amount |
| 80 | + * @return void |
|
| 73 | 81 | */ |
| 74 | 82 | public function specifyCurrentStock($amount); |
| 75 | 83 | |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | */ |
| 157 | 157 | public function iSetItsPriceTo($price = null, $channelName = null) |
| 158 | 158 | { |
| 159 | - $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') :$channelName); |
|
| 159 | + $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') : $channelName); |
|
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | /** |
@@ -519,7 +519,7 @@ discard block |
||
| 519 | 519 | */ |
| 520 | 520 | public function theVariantWithCodeShouldNotHaveShippingRequired(ProductVariantInterface $productVariant) |
| 521 | 521 | { |
| 522 | - $this->updatePage->open(['productId' => $productVariant->getProduct()->getId(),'id' => $productVariant->getId()]); |
|
| 522 | + $this->updatePage->open(['productId' => $productVariant->getProduct()->getId(), 'id' => $productVariant->getId()]); |
|
| 523 | 523 | |
| 524 | 524 | Assert::false($this->updatePage->isShippingRequired()); |
| 525 | 525 | } |
@@ -99,6 +99,6 @@ |
||
| 99 | 99 | { |
| 100 | 100 | $basename = preg_replace('/Plugin$/', '', $this->getName()); |
| 101 | 101 | |
| 102 | - return $this->getNamespace().'\\DependencyInjection\\'.$basename.'Extension'; |
|
| 102 | + return $this->getNamespace() . '\\DependencyInjection\\' . $basename . 'Extension'; |
|
| 103 | 103 | } |
| 104 | 104 | } |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | } |
| 171 | 171 | ] |
| 172 | 172 | } |
| 173 | -EOT; |
|
| 173 | +eot; |
|
| 174 | 174 | |
| 175 | 175 | $this->client->request('POST', '/api/v1/product-options/', [], [], static::$authorizedHeaderWithContentType, $data); |
| 176 | 176 | |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | } |
| 250 | 250 | ] |
| 251 | 251 | } |
| 252 | -EOT; |
|
| 252 | +eot; |
|
| 253 | 253 | |
| 254 | 254 | $this->client->request('PUT', $this->getProductOptionUrl($productOption), [], [], static::$authorizedHeaderWithContentType, $data); |
| 255 | 255 | |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | } |
| 320 | 320 | ] |
| 321 | 321 | } |
| 322 | -EOT; |
|
| 322 | +eot; |
|
| 323 | 323 | |
| 324 | 324 | $this->client->request('PATCH', $this->getProductOptionUrl($productOption), [], [], static::$authorizedHeaderWithContentType, $data); |
| 325 | 325 | |