@@ -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 | /** |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Shop\Order; |
15 | 15 |
@@ -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 | } |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Admin\Product; |
15 | 15 |
@@ -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 | } |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Admin\ProductVariant; |
15 | 15 |
@@ -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 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Admin\ProductVariant; |
15 | 15 |
@@ -38,26 +38,33 @@ discard block |
||
38 | 38 | /** |
39 | 39 | * @param string $channelName |
40 | 40 | * @param int $price |
41 | + * @return void |
|
41 | 42 | */ |
42 | 43 | public function specifyPrice($channelName, $price); |
43 | 44 | |
44 | 45 | /** |
45 | 46 | * @param string $channelName |
46 | 47 | * @param int $originalPrice |
48 | + * @return void |
|
47 | 49 | */ |
48 | 50 | public function specifyOriginalPrice($channelName, $originalPrice); |
49 | 51 | |
50 | 52 | /** |
51 | 53 | * @param string $name |
52 | 54 | * @param string $localeCode |
55 | + * @return void |
|
53 | 56 | */ |
54 | 57 | public function nameItIn($name, $localeCode); |
55 | 58 | |
59 | + /** |
|
60 | + * @return void |
|
61 | + */ |
|
56 | 62 | public function addSelectedAttributes(); |
57 | 63 | |
58 | 64 | /** |
59 | 65 | * @param string $attributeName |
60 | 66 | * @param string $localeCode |
67 | + * @return void |
|
61 | 68 | */ |
62 | 69 | public function removeAttribute($attributeName, $localeCode); |
63 | 70 | |
@@ -90,11 +97,18 @@ discard block |
||
90 | 97 | |
91 | 98 | /** |
92 | 99 | * @param TaxonInterface $taxon |
100 | + * @return void |
|
93 | 101 | */ |
94 | 102 | public function selectMainTaxon(TaxonInterface $taxon); |
95 | 103 | |
104 | + /** |
|
105 | + * @return void |
|
106 | + */ |
|
96 | 107 | public function disableTracking(); |
97 | 108 | |
109 | + /** |
|
110 | + * @return void |
|
111 | + */ |
|
98 | 112 | public function enableTracking(); |
99 | 113 | |
100 | 114 | /** |
@@ -104,6 +118,7 @@ discard block |
||
104 | 118 | |
105 | 119 | /** |
106 | 120 | * @param string $locale |
121 | + * @return void |
|
107 | 122 | */ |
108 | 123 | public function enableSlugModification($locale); |
109 | 124 | |
@@ -117,24 +132,31 @@ discard block |
||
117 | 132 | /** |
118 | 133 | * @param string $path |
119 | 134 | * @param string $type |
135 | + * @return void |
|
120 | 136 | */ |
121 | 137 | public function attachImage($path, $type = null); |
122 | 138 | |
123 | 139 | /** |
124 | 140 | * @param string $type |
125 | 141 | * @param string $path |
142 | + * @return void |
|
126 | 143 | */ |
127 | 144 | public function changeImageWithType($type, $path); |
128 | 145 | |
129 | 146 | /** |
130 | 147 | * @param string $type |
148 | + * @return void |
|
131 | 149 | */ |
132 | 150 | public function removeImageWithType($type); |
133 | 151 | |
152 | + /** |
|
153 | + * @return void |
|
154 | + */ |
|
134 | 155 | public function removeFirstImage(); |
135 | 156 | |
136 | 157 | /** |
137 | 158 | * @param string $type |
159 | + * @return void |
|
138 | 160 | */ |
139 | 161 | public function modifyFirstImageType($type); |
140 | 162 | |
@@ -146,6 +168,7 @@ discard block |
||
146 | 168 | /** |
147 | 169 | * @param ProductAssociationTypeInterface $productAssociationType |
148 | 170 | * @param string[] $productsNames |
171 | + * @return void |
|
149 | 172 | */ |
150 | 173 | public function associateProducts(ProductAssociationTypeInterface $productAssociationType, array $productsNames); |
151 | 174 | |
@@ -160,6 +183,7 @@ discard block |
||
160 | 183 | /** |
161 | 184 | * @param string $productName |
162 | 185 | * @param ProductAssociationTypeInterface $productAssociationType |
186 | + * @return void |
|
163 | 187 | */ |
164 | 188 | public function removeAssociatedProduct($productName, ProductAssociationTypeInterface $productAssociationType); |
165 | 189 | |
@@ -173,6 +197,7 @@ discard block |
||
173 | 197 | |
174 | 198 | /** |
175 | 199 | * @param string $locale |
200 | + * @return void |
|
176 | 201 | */ |
177 | 202 | public function activateLanguageTab($locale); |
178 | 203 | |
@@ -186,6 +211,7 @@ discard block |
||
186 | 211 | /** |
187 | 212 | * @param string $slug |
188 | 213 | * @param string $locale |
214 | + * @return void |
|
189 | 215 | */ |
190 | 216 | public function specifySlugIn($slug, $locale); |
191 | 217 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Admin\Product; |
15 | 15 |
@@ -18,71 +18,95 @@ |
||
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 $contactEmail |
57 | + * @return void |
|
47 | 58 | */ |
48 | 59 | public function setContactEmail($contactEmail); |
49 | 60 | |
50 | 61 | /** |
51 | 62 | * @param string $color |
63 | + * @return void |
|
52 | 64 | */ |
53 | 65 | public function defineColor($color); |
54 | 66 | |
55 | 67 | /** |
56 | 68 | * @param string $language |
69 | + * @return void |
|
57 | 70 | */ |
58 | 71 | public function chooseLocale($language); |
59 | 72 | |
60 | 73 | /** |
61 | 74 | * @param string $currencyCode |
75 | + * @return void |
|
62 | 76 | */ |
63 | 77 | public function chooseCurrency($currencyCode); |
64 | 78 | |
65 | 79 | /** |
66 | 80 | * @param string $taxZone |
81 | + * @return void |
|
67 | 82 | */ |
68 | 83 | public function chooseDefaultTaxZone($taxZone); |
69 | 84 | |
70 | 85 | /** |
71 | 86 | * @param string $locale |
87 | + * @return void |
|
72 | 88 | */ |
73 | 89 | public function chooseDefaultLocale($locale); |
74 | 90 | |
75 | 91 | /** |
76 | 92 | * @param string $currency |
93 | + * @return void |
|
77 | 94 | */ |
78 | 95 | public function chooseBaseCurrency($currency); |
79 | 96 | |
80 | 97 | /** |
81 | 98 | * @param string $taxCalculationStrategy |
99 | + * @return void |
|
82 | 100 | */ |
83 | 101 | public function chooseTaxCalculationStrategy($taxCalculationStrategy); |
84 | 102 | |
103 | + /** |
|
104 | + * @return void |
|
105 | + */ |
|
85 | 106 | public function allowToSkipShippingStep(); |
86 | 107 | |
108 | + /** |
|
109 | + * @return void |
|
110 | + */ |
|
87 | 111 | public function allowToSkipPaymentStep(); |
88 | 112 | } |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Admin\Channel; |
15 | 15 |
@@ -199,6 +199,7 @@ |
||
199 | 199 | |
200 | 200 | /** |
201 | 201 | * {@inheritdoc} |
202 | + * @param string $name |
|
202 | 203 | */ |
203 | 204 | protected function getElement($name, array $parameters = []) |
204 | 205 | { |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Behat\Page\Admin\Product; |
15 | 15 | |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | $imageForm->fillField('Type', $type); |
144 | 144 | } |
145 | 145 | |
146 | - $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path); |
|
146 | + $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path); |
|
147 | 147 | } |
148 | 148 | |
149 | 149 | /** |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | } |
67 | 67 | } |
68 | -EOT; |
|
68 | +eot; |
|
69 | 69 | |
70 | 70 | $this->client->request('POST', '/api/v1/product-association-types/', [], [], [ |
71 | 71 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | } |
214 | 214 | } |
215 | 215 | } |
216 | -EOT; |
|
216 | +eot; |
|
217 | 217 | |
218 | 218 | $this->client->request('PUT', $this->getAssociationTypeUrl($productAssociationType), [], [], [ |
219 | 219 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | } |
260 | 260 | } |
261 | 261 | } |
262 | -EOT; |
|
262 | +eot; |
|
263 | 263 | |
264 | 264 | $this->client->request('PATCH', $this->getAssociationTypeUrl($productAssociationType), [], [], [ |
265 | 265 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Tests\Controller; |
15 | 15 |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | } |
147 | 147 | } |
148 | 148 | } |
149 | -EOT; |
|
149 | +eot; |
|
150 | 150 | |
151 | 151 | $this->client->request('POST', '/api/v1/product-attributes/text', [], [], static::$authorizedHeaderWithContentType, $data); |
152 | 152 | |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | } |
204 | 204 | } |
205 | 205 | } |
206 | -EOT; |
|
206 | +eot; |
|
207 | 207 | |
208 | 208 | $this->client->request('PUT', $this->getProductAttributeUrl($productAttribute), [], [], static::$authorizedHeaderWithContentType, $data); |
209 | 209 | |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | } |
239 | 239 | } |
240 | 240 | } |
241 | -EOT; |
|
241 | +eot; |
|
242 | 242 | |
243 | 243 | $this->client->request('PATCH', $this->getProductAttributeUrl($productAttribute), [], [], static::$authorizedHeaderWithContentType, $data); |
244 | 244 | |
@@ -266,7 +266,7 @@ discard block |
||
266 | 266 | { |
267 | 267 | "type": "integer" |
268 | 268 | } |
269 | -EOT; |
|
269 | +eot; |
|
270 | 270 | |
271 | 271 | $this->client->request('PATCH', $this->getProductAttributeUrl($productAttribute), [], [], static::$authorizedHeaderWithContentType, $data); |
272 | 272 | |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | } |
311 | 311 | } |
312 | 312 | } |
313 | -EOT; |
|
313 | +eot; |
|
314 | 314 | |
315 | 315 | $this->client->request('POST', '/api/v1/product-attributes/select', [], [], static::$authorizedHeaderWithContentType, $data); |
316 | 316 |
@@ -9,7 +9,7 @@ |
||
9 | 9 | * file that was distributed with this source code. |
10 | 10 | */ |
11 | 11 | |
12 | -declare(strict_types=1); |
|
12 | +declare(strict_types = 1); |
|
13 | 13 | |
14 | 14 | namespace Sylius\Tests\Controller; |
15 | 15 |