@@ -29,7 +29,7 @@ |
||
29 | 29 | ->setDescription('Install sample data into Sylius.') |
30 | 30 | ->setHelp(<<<EOT |
31 | 31 | The <info>%command.name%</info> command loads the sample data for Sylius. |
32 | -EOT |
|
32 | +eot |
|
33 | 33 | ) |
34 | 34 | ; |
35 | 35 | } |
@@ -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\CoreBundle\Command; |
15 | 15 |
@@ -55,7 +55,7 @@ |
||
55 | 55 | To show the metadata for a resource, pass its alias: |
56 | 56 | |
57 | 57 | $ php %command.full_name% sylius.user |
58 | -EOT |
|
58 | +eot |
|
59 | 59 | ); |
60 | 60 | $this->addArgument('resource', InputArgument::OPTIONAL, 'Resource to debug'); |
61 | 61 | } |
@@ -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\ResourceBundle\Command; |
15 | 15 |
@@ -76,7 +76,7 @@ |
||
76 | 76 | $objects = $this->loadFixturesFromFile('books.yml'); |
77 | 77 | |
78 | 78 | $data = |
79 | - <<<EOT |
|
79 | + <<<EOT |
|
80 | 80 | { |
81 | 81 | "author": "Christie Golden" |
82 | 82 | } |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | }, |
35 | 35 | "author": "Christie Golden" |
36 | 36 | } |
37 | -EOT; |
|
37 | +eot; |
|
38 | 38 | |
39 | 39 | $this->client->request('POST', '/books/', [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
40 | 40 | $response = $this->client->getResponse(); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | }, |
62 | 62 | "author": "Christie Golden" |
63 | 63 | } |
64 | -EOT; |
|
64 | +eot; |
|
65 | 65 | |
66 | 66 | $this->client->request('PUT', '/books/' . $objects['book1']->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
67 | 67 | $response = $this->client->getResponse(); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | { |
81 | 81 | "author": "Christie Golden" |
82 | 82 | } |
83 | -EOT; |
|
83 | +eot; |
|
84 | 84 | |
85 | 85 | $this->client->request('PATCH', '/books/' . $objects['book1']->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
86 | 86 | $response = $this->client->getResponse(); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | /* |
5 | 5 | * This file is part of the Sylius package. |
6 | 6 | * |
@@ -85,7 +85,7 @@ |
||
85 | 85 | $objects = $this->loadFixturesFromFile('comic_books.yml'); |
86 | 86 | |
87 | 87 | $data = |
88 | - <<<EOT |
|
88 | + <<<EOT |
|
89 | 89 | { |
90 | 90 | "authorFirstName": "Joe", |
91 | 91 | "authorLastName": "Kelly" |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | "authorFirstName": "Joe", |
32 | 32 | "authorLastName": "Kelly" |
33 | 33 | } |
34 | -EOT; |
|
34 | +eot; |
|
35 | 35 | |
36 | 36 | $this->client->request('POST', '/v1/comic-books/', [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
37 | 37 | $response = $this->client->getResponse(); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | "authorFirstName": "Joe", |
51 | 51 | "authorLastName": "Kelly" |
52 | 52 | } |
53 | -EOT; |
|
53 | +eot; |
|
54 | 54 | |
55 | 55 | $this->client->request('POST', '/v1.2/comic-books/', [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
56 | 56 | $response = $this->client->getResponse(); |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | "authorFirstName": "Joe", |
72 | 72 | "authorLastName": "Kelly" |
73 | 73 | } |
74 | -EOT; |
|
74 | +eot; |
|
75 | 75 | |
76 | 76 | $this->client->request('PUT', '/v1/comic-books/' . $objects['comic-book1']->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
77 | 77 | $response = $this->client->getResponse(); |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | "authorFirstName": "Joe", |
92 | 92 | "authorLastName": "Kelly" |
93 | 93 | } |
94 | -EOT; |
|
94 | +eot; |
|
95 | 95 | |
96 | 96 | $this->client->request('PATCH', '/v1/comic-books/' . $objects['comic-book1']->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
97 | 97 | $response = $this->client->getResponse(); |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | /* |
5 | 5 | * This file is part of the Sylius package. |
6 | 6 | * |
@@ -102,7 +102,7 @@ |
||
102 | 102 | { |
103 | 103 | "code": "es_ES" |
104 | 104 | } |
105 | -EOT; |
|
105 | +eot; |
|
106 | 106 | |
107 | 107 | $this->client->request('POST', '/api/v1/locales/', [], [], static::$authorizedHeaderWithContentType, $data); |
108 | 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\Tests\Controller; |
15 | 15 |
@@ -205,7 +205,7 @@ |
||
205 | 205 | { |
206 | 206 | "tracking": "BANANAS" |
207 | 207 | } |
208 | -EOT; |
|
208 | +eot; |
|
209 | 209 | |
210 | 210 | $this->client->request('PUT', $this->getShipOrderShipmentUrl($orderId, $rawResponse['shipments'][0]['id']), [], [], static::$authorizedHeaderWithContentType, $data); |
211 | 211 |
@@ -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 |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | "channel": "WEB", |
133 | 133 | "localeCode": "en_US" |
134 | 134 | } |
135 | -EOT; |
|
135 | +eot; |
|
136 | 136 | |
137 | 137 | $this->client->request('POST', '/api/v1/carts/', [], [], static::$authorizedHeaderWithContentType, $data); |
138 | 138 | |
@@ -293,7 +293,7 @@ discard block |
||
293 | 293 | "variant": "MUG_SW", |
294 | 294 | "quantity": 1 |
295 | 295 | } |
296 | -EOT; |
|
296 | +eot; |
|
297 | 297 | $this->client->request('POST', $this->getCartItemListUrl($cart), [], [], static::$authorizedHeaderWithContentType, $data); |
298 | 298 | |
299 | 299 | $response = $this->client->getResponse(); |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | "variant": "MUG_SW", |
318 | 318 | "quantity": -1 |
319 | 319 | } |
320 | -EOT; |
|
320 | +eot; |
|
321 | 321 | $this->client->request('POST', $this->getCartItemListUrl($cart), [], [], static::$authorizedHeaderWithContentType, $data); |
322 | 322 | |
323 | 323 | $response = $this->client->getResponse(); |
@@ -341,7 +341,7 @@ discard block |
||
341 | 341 | "variant": "MUG_SW", |
342 | 342 | "quantity": 3 |
343 | 343 | } |
344 | -EOT; |
|
344 | +eot; |
|
345 | 345 | $this->client->request('POST', $this->getCartItemListUrl($cart), [], [], static::$authorizedHeaderWithContentType, $data); |
346 | 346 | |
347 | 347 | $response = $this->client->getResponse(); |
@@ -365,7 +365,7 @@ discard block |
||
365 | 365 | "variant": "HARD_AVAILABLE_MUG", |
366 | 366 | "quantity": 1 |
367 | 367 | } |
368 | -EOT; |
|
368 | +eot; |
|
369 | 369 | $this->client->request('POST', $this->getCartItemListUrl($cart), [], [], static::$authorizedHeaderWithContentType, $data); |
370 | 370 | |
371 | 371 | $response = $this->client->getResponse(); |
@@ -389,7 +389,7 @@ discard block |
||
389 | 389 | "variant": "HARD_AVAILABLE_MUG", |
390 | 390 | "quantity": 3 |
391 | 391 | } |
392 | -EOT; |
|
392 | +eot; |
|
393 | 393 | $this->client->request('POST', $this->getCartItemListUrl($cart), [], [], static::$authorizedHeaderWithContentType, $data); |
394 | 394 | |
395 | 395 | $response = $this->client->getResponse(); |
@@ -425,7 +425,7 @@ discard block |
||
425 | 425 | { |
426 | 426 | "variant": "MUG_SW" |
427 | 427 | } |
428 | -EOT; |
|
428 | +eot; |
|
429 | 429 | |
430 | 430 | |
431 | 431 | $this->client->request('PUT', $this->getCartItemUrl($cart, $cartItem), [], [], static::$authorizedHeaderWithContentType, $data); |
@@ -452,7 +452,7 @@ discard block |
||
452 | 452 | { |
453 | 453 | "quantity": 3 |
454 | 454 | } |
455 | -EOT; |
|
455 | +eot; |
|
456 | 456 | $this->client->request('PUT', $this->getCartItemUrl($cart, $cartItem), [], [], static::$authorizedHeaderWithContentType, $data); |
457 | 457 | |
458 | 458 | $response = $this->client->getResponse(); |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | { |
483 | 483 | "quantity": 3 |
484 | 484 | } |
485 | -EOT; |
|
485 | +eot; |
|
486 | 486 | $this->client->request('PUT', $this->getCartItemUrl($cart, $cartItem), [], [], static::$authorizedHeaderWithContentType, $data); |
487 | 487 | |
488 | 488 | $response = $this->client->getResponse(); |
@@ -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 |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | "name": "Clothing", |
63 | 63 | "description": "All items classified as clothing." |
64 | 64 | } |
65 | -EOT; |
|
65 | +eot; |
|
66 | 66 | |
67 | 67 | $this->client->request('POST', '/api/v1/tax-categories/', [], [], [ |
68 | 68 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | "name": "Clothing & Accessories", |
254 | 254 | "description": "All items classified as clothing with accessories." |
255 | 255 | } |
256 | -EOT; |
|
256 | +eot; |
|
257 | 257 | |
258 | 258 | $this->client->request('PUT', $this->getTaxCategoryUrl($taxCategory), [], [], [ |
259 | 259 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -294,7 +294,7 @@ discard block |
||
294 | 294 | { |
295 | 295 | "name": "Clothing & Accessories" |
296 | 296 | } |
297 | -EOT; |
|
297 | +eot; |
|
298 | 298 | |
299 | 299 | $this->client->request('PATCH', $this->getTaxCategoryUrl($taxCategory), [], [], [ |
300 | 300 | '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 |
@@ -11,8 +11,8 @@ |
||
11 | 11 | |
12 | 12 | namespace Sylius\Bundle\GridBundle\Doctrine\ORM; |
13 | 13 | |
14 | -use Doctrine\ORM\Query\Expr\Comparison; |
|
15 | 14 | use Doctrine\ORM\QueryBuilder; |
15 | +use Doctrine\ORM\Query\Expr\Comparison; |
|
16 | 16 | use Sylius\Component\Grid\Data\ExpressionBuilderInterface; |
17 | 17 | |
18 | 18 | /** |
@@ -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\GridBundle\Doctrine\ORM; |
15 | 15 |