@@ -145,7 +145,7 @@ |
||
145 | 145 | 'translation.name LIKE :phrase', |
146 | 146 | 'o.code LIKE :phrase' |
147 | 147 | )) |
148 | - ->setParameter('phrase', '%'.$phrase.'%') |
|
148 | + ->setParameter('phrase', '%' . $phrase . '%') |
|
149 | 149 | ->setParameter('locale', $locale) |
150 | 150 | ->setParameter('productCode', $productCode) |
151 | 151 | ->getQuery() |
@@ -67,7 +67,7 @@ |
||
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
70 | - * @return callable |
|
70 | + * @return \Closure |
|
71 | 71 | */ |
72 | 72 | private function optionalCallableNormalizer() |
73 | 73 | { |
@@ -20,16 +20,19 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $type |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function setType($type); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param array $configuration |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function setConfiguration(array $configuration); |
30 | 32 | |
31 | 33 | /** |
32 | 34 | * @param PromotionInterface $promotion |
35 | + * @return void |
|
33 | 36 | */ |
34 | 37 | public function setPromotion(PromotionInterface $promotion = null); |
35 | 38 | } |
@@ -20,16 +20,19 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param string $type |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function setType($type); |
25 | 26 | |
26 | 27 | /** |
27 | 28 | * @param array $configuration |
29 | + * @return void |
|
28 | 30 | */ |
29 | 31 | public function setConfiguration(array $configuration); |
30 | 32 | |
31 | 33 | /** |
32 | 34 | * @param PromotionInterface $promotion |
35 | + * @return void |
|
33 | 36 | */ |
34 | 37 | public function setPromotion(PromotionInterface $promotion = null); |
35 | 38 | } |
@@ -55,6 +55,7 @@ |
||
55 | 55 | |
56 | 56 | /** |
57 | 57 | * @Then the :productVariantCode variant of the :product product should appear in the store |
58 | + * @param string $productVariantCode |
|
58 | 59 | */ |
59 | 60 | public function theProductVariantShouldAppearInTheShop($productVariantCode, ProductInterface $product) |
60 | 61 | { |
@@ -519,7 +519,7 @@ |
||
519 | 519 | |
520 | 520 | /** |
521 | 521 | * @param string $element |
522 | - * @param $message |
|
522 | + * @param string $message |
|
523 | 523 | */ |
524 | 524 | private function assertValidationMessage($element, $message) |
525 | 525 | { |
@@ -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 | } |
@@ -33,6 +33,7 @@ discard block |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param string $name |
36 | + * @return void |
|
36 | 37 | */ |
37 | 38 | public function setName($name); |
38 | 39 | |
@@ -48,11 +49,13 @@ discard block |
||
48 | 49 | |
49 | 50 | /** |
50 | 51 | * @param ProductOptionValueInterface $optionValue |
52 | + * @return void |
|
51 | 53 | */ |
52 | 54 | public function addOptionValue(ProductOptionValueInterface $optionValue); |
53 | 55 | |
54 | 56 | /** |
55 | 57 | * @param ProductOptionValueInterface $optionValue |
58 | + * @return void |
|
56 | 59 | */ |
57 | 60 | public function removeOptionValue(ProductOptionValueInterface $optionValue); |
58 | 61 | |
@@ -70,6 +73,7 @@ discard block |
||
70 | 73 | |
71 | 74 | /** |
72 | 75 | * @param null|ProductInterface $product |
76 | + * @return void |
|
73 | 77 | */ |
74 | 78 | public function setProduct(ProductInterface $product = null); |
75 | 79 | |
@@ -80,6 +84,7 @@ discard block |
||
80 | 84 | |
81 | 85 | /** |
82 | 86 | * @param int $position |
87 | + * @return void |
|
83 | 88 | */ |
84 | 89 | public function setPosition($position); |
85 | 90 | } |
@@ -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 | } |