@@ -46,7 +46,7 @@ |
||
46 | 46 | ->setHelp(<<<EOT |
47 | 47 | The <info>%command.name%</info>command creates a new client. |
48 | 48 | <info>php %command.full_name% [--redirect-uri=...] [--grant-type=...] name</info> |
49 | -EOT |
|
49 | +eot |
|
50 | 50 | ); |
51 | 51 | } |
52 | 52 |
@@ -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\Bundle\AdminApiBundle\Command; |
15 | 15 |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | "plainPassword": "youShallNotPass", |
77 | 77 | "localeCode": "en_US" |
78 | 78 | } |
79 | -EOT; |
|
79 | +eot; |
|
80 | 80 | |
81 | 81 | $this->client->request('POST', '/api/v1/users/', [], [], static::$authorizedHeaderWithContentType, $data); |
82 | 82 | |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | "localeCode": "en_US", |
104 | 104 | "enabled": "true" |
105 | 105 | } |
106 | -EOT; |
|
106 | +eot; |
|
107 | 107 | |
108 | 108 | $this->client->request('POST', '/api/v1/users/', [], [], static::$authorizedHeaderWithContentType, $data); |
109 | 109 | |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | "localeCode": "fr_FR", |
234 | 234 | "enabled": "true" |
235 | 235 | } |
236 | -EOT; |
|
236 | +eot; |
|
237 | 237 | |
238 | 238 | $this->client->request('PUT', $this->getAdminUserUrl($users['admin1']), [], [], static::$authorizedHeaderWithContentType, $data); |
239 | 239 | |
@@ -273,7 +273,7 @@ discard block |
||
273 | 273 | "firstName": "John", |
274 | 274 | "lastName": "Doe" |
275 | 275 | } |
276 | -EOT; |
|
276 | +eot; |
|
277 | 277 | |
278 | 278 | $this->client->request('PATCH', $this->getAdminUserUrl($users['admin1']), [], [], static::$authorizedHeaderWithContentType, $data); |
279 | 279 |
@@ -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\Tests\Controller; |
15 | 15 | |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | $this->client->request('DELETE', $this->getAdminUserUrl($user['admin']), [], [], static::$authorizedHeaderWithContentType); |
343 | 343 | |
344 | 344 | $response = $this->client->getResponse(); |
345 | - $this->assertResponse($response, 'admin_user/deletion_fail_response', Response::HTTP_UNPROCESSABLE_ENTITY); |
|
345 | + $this->assertResponse($response, 'admin_user/deletion_fail_response', Response::HTTP_UNPROCESSABLE_ENTITY); |
|
346 | 346 | } |
347 | 347 | |
348 | 348 | /** |
@@ -230,7 +230,7 @@ discard block |
||
230 | 230 | "code": "christmas-promotion", |
231 | 231 | "name": "Christmas Promotion" |
232 | 232 | } |
233 | -EOT; |
|
233 | +eot; |
|
234 | 234 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
235 | 235 | |
236 | 236 | $response = $this->client->getResponse(); |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | "MOB" |
256 | 256 | ] |
257 | 257 | } |
258 | -EOT; |
|
258 | +eot; |
|
259 | 259 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
260 | 260 | |
261 | 261 | $response = $this->client->getResponse(); |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | "time": "11:00" |
284 | 284 | } |
285 | 285 | } |
286 | -EOT; |
|
286 | +eot; |
|
287 | 287 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
288 | 288 | |
289 | 289 | $response = $this->client->getResponse(); |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | } |
324 | 324 | ] |
325 | 325 | } |
326 | -EOT; |
|
326 | +eot; |
|
327 | 327 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
328 | 328 | |
329 | 329 | $response = $this->client->getResponse(); |
@@ -387,7 +387,7 @@ discard block |
||
387 | 387 | } |
388 | 388 | ] |
389 | 389 | } |
390 | -EOT; |
|
390 | +eot; |
|
391 | 391 | |
392 | 392 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
393 | 393 | |
@@ -409,7 +409,7 @@ discard block |
||
409 | 409 | "name": "Christmas Promotion", |
410 | 410 | "couponBased": true |
411 | 411 | } |
412 | -EOT; |
|
412 | +eot; |
|
413 | 413 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
414 | 414 | |
415 | 415 | $response = $this->client->getResponse(); |
@@ -431,7 +431,7 @@ discard block |
||
431 | 431 | "exclusive": true, |
432 | 432 | "priority": 0 |
433 | 433 | } |
434 | -EOT; |
|
434 | +eot; |
|
435 | 435 | $this->client->request('POST', '/api/v1/promotions/', [], [], static::$authorizedHeaderWithContentType, $data); |
436 | 436 | |
437 | 437 | $response = $this->client->getResponse(); |
@@ -453,7 +453,7 @@ discard block |
||
453 | 453 | "name": "Monday promotion", |
454 | 454 | "priority": 0 |
455 | 455 | } |
456 | -EOT; |
|
456 | +eot; |
|
457 | 457 | $this->client->request('PUT', $this->getPromotionUrl($promotion), [], [], static::$authorizedHeaderWithContentType, $data); |
458 | 458 | $response = $this->client->getResponse(); |
459 | 459 | |
@@ -479,7 +479,7 @@ discard block |
||
479 | 479 | { |
480 | 480 | "exclusive": true |
481 | 481 | } |
482 | -EOT; |
|
482 | +eot; |
|
483 | 483 | $this->client->request('PATCH', $this->getPromotionUrl($promotion), [], [], static::$authorizedHeaderWithContentType, $data); |
484 | 484 | $response = $this->client->getResponse(); |
485 | 485 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
@@ -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 |
@@ -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 | |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | $imageForm->fillField('Type', $type); |
214 | 214 | } |
215 | 215 | |
216 | - $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path); |
|
216 | + $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path); |
|
217 | 217 | } |
218 | 218 | |
219 | 219 | /** |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | $filesPath = $this->getParameter('files_path'); |
225 | 225 | |
226 | 226 | $imageForm = $this->getImageElementByType($type); |
227 | - $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path); |
|
227 | + $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path); |
|
228 | 228 | } |
229 | 229 | |
230 | 230 | /** |
@@ -500,7 +500,7 @@ discard block |
||
500 | 500 | private function getImageElementByType($type) |
501 | 501 | { |
502 | 502 | $images = $this->getElement('images'); |
503 | - $typeInput = $images->find('css', 'input[value="'.$type.'"]'); |
|
503 | + $typeInput = $images->find('css', 'input[value="' . $type . '"]'); |
|
504 | 504 | |
505 | 505 | if (null === $typeInput) { |
506 | 506 | return null; |
@@ -11,7 +11,6 @@ |
||
11 | 11 | |
12 | 12 | namespace Sylius\Behat\Page\Admin\Promotion; |
13 | 13 | |
14 | -use Behat\Mink\Driver\Selenium2Driver; |
|
15 | 14 | use Behat\Mink\Element\NodeElement; |
16 | 15 | use Behat\Mink\Exception\ElementNotFoundException; |
17 | 16 | use Sylius\Behat\Behaviour\NamesIt; |
@@ -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\Promotion; |
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\Taxon; |
15 | 15 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | $imageForm->fillField('Type', $type); |
85 | 85 | } |
86 | 86 | |
87 | - $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path); |
|
87 | + $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | /** |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | $filesPath = $this->getParameter('files_path'); |
162 | 162 | |
163 | 163 | $imageForm = $this->getImageElementByType($type); |
164 | - $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath.$path); |
|
164 | + $imageForm->find('css', 'input[type="file"]')->attachFile($filesPath . $path); |
|
165 | 165 | } |
166 | 166 | |
167 | 167 | /** |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | private function getImageElementByType($type) |
320 | 320 | { |
321 | 321 | $images = $this->getElement('images'); |
322 | - $typeInput = $images->find('css', 'input[value="'.$type.'"]'); |
|
322 | + $typeInput = $images->find('css', 'input[value="' . $type . '"]'); |
|
323 | 323 | |
324 | 324 | if (null === $typeInput) { |
325 | 325 | return null; |
@@ -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 | { |
@@ -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\Context\Ui\Admin; |
15 | 15 | |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | */ |
159 | 159 | public function iSetItsPriceTo($price = null, $channelName = null) |
160 | 160 | { |
161 | - $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') :$channelName); |
|
161 | + $this->createPage->specifyPrice($price, (null === $channelName) ? $this->sharedStorage->get('channel') : $channelName); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | /** |
@@ -521,7 +521,7 @@ discard block |
||
521 | 521 | */ |
522 | 522 | public function theVariantWithCodeShouldNotHaveShippingRequired(ProductVariantInterface $productVariant) |
523 | 523 | { |
524 | - $this->updatePage->open(['productId' => $productVariant->getProduct()->getId(),'id' => $productVariant->getId()]); |
|
524 | + $this->updatePage->open(['productId' => $productVariant->getProduct()->getId(), 'id' => $productVariant->getId()]); |
|
525 | 525 | |
526 | 526 | Assert::false($this->updatePage->isShippingRequired()); |
527 | 527 | } |
@@ -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 |