@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
60 | 60 | $orderData = $this->loadFixturesFromFile('resources/orders.yml'); |
61 | 61 | |
62 | - $this->client->request('GET', '/api/v1/orders/'.$orderData['order-001']->getId(), [], [], static::$authorizedHeaderWithContentType); |
|
62 | + $this->client->request('GET', '/api/v1/orders/' . $orderData['order-001']->getId(), [], [], static::$authorizedHeaderWithContentType); |
|
63 | 63 | |
64 | 64 | $response = $this->client->getResponse(); |
65 | 65 | $this->assertResponse($response, 'order/show_response', Response::HTTP_OK); |
@@ -159,12 +159,12 @@ discard block |
||
159 | 159 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
160 | 160 | $orders = $this->loadFixturesFromFile('resources/orders.yml'); |
161 | 161 | |
162 | - $this->client->request('DELETE', '/api/v1/orders/'.$orders['order-001']->getId(), [], [], static::$authorizedHeaderWithContentType, []); |
|
162 | + $this->client->request('DELETE', '/api/v1/orders/' . $orders['order-001']->getId(), [], [], static::$authorizedHeaderWithContentType, []); |
|
163 | 163 | |
164 | 164 | $response = $this->client->getResponse(); |
165 | 165 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
166 | 166 | |
167 | - $this->client->request('GET', '/api/v1/orders/'.$orders['order-001']->getId(), [], [], static::$authorizedHeaderWithContentType); |
|
167 | + $this->client->request('GET', '/api/v1/orders/' . $orders['order-001']->getId(), [], [], static::$authorizedHeaderWithContentType); |
|
168 | 168 | |
169 | 169 | $response = $this->client->getResponse(); |
170 | 170 | $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND); |
@@ -104,7 +104,7 @@ |
||
104 | 104 | "channel": "WEB", |
105 | 105 | "locale_code": "en_US" |
106 | 106 | } |
107 | -EOT; |
|
107 | +eot; |
|
108 | 108 | |
109 | 109 | $this->client->request('POST', '/api/v1/orders/', [], [], static::$authorizedHeaderWithContentType, $data); |
110 | 110 |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
183 | 183 | $taxCategories = $this->loadFixturesFromFile('resources/tax_categories.yml'); |
184 | 184 | |
185 | - $this->client->request('GET', '/api/v1/tax-categories/'.$taxCategories['tax_category_1']->getId(), [], [], [ |
|
185 | + $this->client->request('GET', '/api/v1/tax-categories/' . $taxCategories['tax_category_1']->getId(), [], [], [ |
|
186 | 186 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
187 | 187 | 'ACCEPT' => 'application/json', |
188 | 188 | ]); |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
227 | 227 | $taxCategories = $this->loadFixturesFromFile('resources/tax_categories.yml'); |
228 | 228 | |
229 | - $this->client->request('PUT', '/api/v1/tax-categories/'.$taxCategories['tax_category_1']->getId(), [], [], [ |
|
229 | + $this->client->request('PUT', '/api/v1/tax-categories/' . $taxCategories['tax_category_1']->getId(), [], [], [ |
|
230 | 230 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
231 | 231 | 'CONTENT_TYPE' => 'application/json', |
232 | 232 | ]); |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | } |
252 | 252 | EOT; |
253 | 253 | |
254 | - $this->client->request('PUT', '/api/v1/tax-categories/'.$taxCategories['tax_category_1']->getId(), [], [], [ |
|
254 | + $this->client->request('PUT', '/api/v1/tax-categories/' . $taxCategories['tax_category_1']->getId(), [], [], [ |
|
255 | 255 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
256 | 256 | 'CONTENT_TYPE' => 'application/json', |
257 | 257 | ], $data); |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | $response = $this->client->getResponse(); |
260 | 260 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
261 | 261 | |
262 | - $this->client->request('GET', '/api/v1/tax-categories/'.$taxCategories['tax_category_1']->getId(), [], [], [ |
|
262 | + $this->client->request('GET', '/api/v1/tax-categories/' . $taxCategories['tax_category_1']->getId(), [], [], [ |
|
263 | 263 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
264 | 264 | 'ACCEPT' => 'application/json', |
265 | 265 | ]); |
@@ -299,7 +299,7 @@ discard block |
||
299 | 299 | } |
300 | 300 | EOT; |
301 | 301 | |
302 | - $this->client->request('PATCH', '/api/v1/tax-categories/'.$taxCategories['tax_category_1']->getId(), [], [], [ |
|
302 | + $this->client->request('PATCH', '/api/v1/tax-categories/' . $taxCategories['tax_category_1']->getId(), [], [], [ |
|
303 | 303 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
304 | 304 | 'CONTENT_TYPE' => 'application/json', |
305 | 305 | ], $data); |
@@ -307,7 +307,7 @@ discard block |
||
307 | 307 | $response = $this->client->getResponse(); |
308 | 308 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
309 | 309 | |
310 | - $this->client->request('GET', '/api/v1/tax-categories/'.$taxCategories['tax_category_1']->getId(), [], [], [ |
|
310 | + $this->client->request('GET', '/api/v1/tax-categories/' . $taxCategories['tax_category_1']->getId(), [], [], [ |
|
311 | 311 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
312 | 312 | 'ACCEPT' => 'application/json', |
313 | 313 | ]); |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | $this->loadFixturesFromFile('authentication/api_administrator.yml'); |
341 | 341 | $taxCategories = $this->loadFixturesFromFile('resources/tax_categories.yml'); |
342 | 342 | |
343 | - $this->client->request('DELETE', '/api/v1/tax-categories/'.$taxCategories['tax_category_1']->getId(), [], [], [ |
|
343 | + $this->client->request('DELETE', '/api/v1/tax-categories/' . $taxCategories['tax_category_1']->getId(), [], [], [ |
|
344 | 344 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
345 | 345 | 'CONTENT_TYPE' => 'application/json', |
346 | 346 | ], []); |
@@ -348,7 +348,7 @@ discard block |
||
348 | 348 | $response = $this->client->getResponse(); |
349 | 349 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
350 | 350 | |
351 | - $this->client->request('GET', '/api/v1/tax-categories/'.$taxCategories['tax_category_1']->getId(), [], [], [ |
|
351 | + $this->client->request('GET', '/api/v1/tax-categories/' . $taxCategories['tax_category_1']->getId(), [], [], [ |
|
352 | 352 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
353 | 353 | 'ACCEPT' => 'application/json', |
354 | 354 | ]); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | "name": "Clothing", |
62 | 62 | "description": "All items classified as clothing." |
63 | 63 | } |
64 | -EOT; |
|
64 | +eot; |
|
65 | 65 | |
66 | 66 | $this->client->request('POST', '/api/v1/tax-categories/', [], [], [ |
67 | 67 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | "name": "Clothing & Accessories", |
250 | 250 | "description": "All items classified as clothing with accessories." |
251 | 251 | } |
252 | -EOT; |
|
252 | +eot; |
|
253 | 253 | |
254 | 254 | $this->client->request('PUT', '/api/v1/tax-categories/'.$taxCategories['tax_category_1']->getId(), [], [], [ |
255 | 255 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | { |
298 | 298 | "name": "Clothing & Accessories" |
299 | 299 | } |
300 | -EOT; |
|
300 | +eot; |
|
301 | 301 | |
302 | 302 | $this->client->request('PATCH', '/api/v1/tax-categories/'.$taxCategories['tax_category_1']->getId(), [], [], [ |
303 | 303 | 'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ', |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | } |
73 | 73 | EOT; |
74 | 74 | |
75 | - $this->client->request('PUT', '/v1/comic-books/'. $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
75 | + $this->client->request('PUT', '/v1/comic-books/' . $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
76 | 76 | $response = $this->client->getResponse(); |
77 | 77 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
78 | 78 | } |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | } |
93 | 93 | EOT; |
94 | 94 | |
95 | - $this->client->request('PATCH', '/v1/comic-books/'. $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
95 | + $this->client->request('PATCH', '/v1/comic-books/' . $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
|
96 | 96 | $response = $this->client->getResponse(); |
97 | 97 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
98 | 98 | } |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | { |
105 | 105 | $objects = $this->loadFixturesFromFile('comic_books.yml'); |
106 | 106 | |
107 | - $this->client->request('DELETE', '/v1/comic-books/'. $objects["comic-book1"]->getId()); |
|
107 | + $this->client->request('DELETE', '/v1/comic-books/' . $objects["comic-book1"]->getId()); |
|
108 | 108 | $response = $this->client->getResponse(); |
109 | 109 | $this->assertResponseCode($response, Response::HTTP_NO_CONTENT); |
110 | 110 | } |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | { |
117 | 117 | $objects = $this->loadFixturesFromFile('comic_books.yml'); |
118 | 118 | |
119 | - $this->client->request('GET', '/v1/comic-books/'. $objects["comic-book1"]->getId()); |
|
119 | + $this->client->request('GET', '/v1/comic-books/' . $objects["comic-book1"]->getId()); |
|
120 | 120 | $response = $this->client->getResponse(); |
121 | 121 | $this->assertResponse($response, 'comic-books/show_response'); |
122 | 122 | } |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | { |
129 | 129 | $objects = $this->loadFixturesFromFile('comic_books.yml'); |
130 | 130 | |
131 | - $this->client->request('GET', '/v1.2/comic-books/'. $objects["comic-book1"]->getId()); |
|
131 | + $this->client->request('GET', '/v1.2/comic-books/' . $objects["comic-book1"]->getId()); |
|
132 | 132 | $response = $this->client->getResponse(); |
133 | 133 | $this->assertResponse($response, 'comic-books/versioned_show_response'); |
134 | 134 | } |
@@ -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(); |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | "authorFirstName": "Joe", |
50 | 50 | "authorLastName": "Kelly" |
51 | 51 | } |
52 | -EOT; |
|
52 | +eot; |
|
53 | 53 | |
54 | 54 | $this->client->request('POST', '/v1.2/comic-books/', [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
55 | 55 | $response = $this->client->getResponse(); |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | "authorFirstName": "Joe", |
71 | 71 | "authorLastName": "Kelly" |
72 | 72 | } |
73 | -EOT; |
|
73 | +eot; |
|
74 | 74 | |
75 | 75 | $this->client->request('PUT', '/v1/comic-books/'. $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
76 | 76 | $response = $this->client->getResponse(); |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | "authorFirstName": "Joe", |
91 | 91 | "authorLastName": "Kelly" |
92 | 92 | } |
93 | -EOT; |
|
93 | +eot; |
|
94 | 94 | |
95 | 95 | $this->client->request('PATCH', '/v1/comic-books/'. $objects["comic-book1"]->getId(), [], [], ['CONTENT_TYPE' => 'application/json'], $data); |
96 | 96 | $response = $this->client->getResponse(); |
@@ -505,6 +505,7 @@ |
||
505 | 505 | |
506 | 506 | /** |
507 | 507 | * {@inheritdoc} |
508 | + * @param string $localeCode |
|
508 | 509 | */ |
509 | 510 | private function getAttributeInDifferentLocale(ProductAttributeValueInterface $attributeValue, $localeCode) |
510 | 511 | { |
@@ -13,11 +13,11 @@ |
||
13 | 13 | |
14 | 14 | use Doctrine\Common\Collections\ArrayCollection; |
15 | 15 | use Doctrine\Common\Collections\Collection; |
16 | -use Webmozart\Assert\Assert; |
|
17 | 16 | use Sylius\Component\Attribute\Model\AttributeValueInterface; |
18 | 17 | use Sylius\Component\Resource\Model\TimestampableTrait; |
19 | 18 | use Sylius\Component\Resource\Model\ToggleableTrait; |
20 | 19 | use Sylius\Component\Resource\Model\TranslatableTrait; |
20 | +use Webmozart\Assert\Assert; |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * @author Paweł Jędrzejewski <[email protected]> |
@@ -35,7 +35,7 @@ |
||
35 | 35 | $defaultLocale = $this->container->getParameter('locale'); |
36 | 36 | |
37 | 37 | $this->addSql('ALTER TABLE sylius_product_attribute_value ADD locale_code VARCHAR(255) NOT NULL'); |
38 | - $this->addSql('UPDATE sylius_product_attribute_value SET locale_code = "'.$defaultLocale.'"'); |
|
38 | + $this->addSql('UPDATE sylius_product_attribute_value SET locale_code = "' . $defaultLocale . '"'); |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
@@ -15,8 +15,8 @@ |
||
15 | 15 | use Sylius\Component\Product\Model\ProductOptionValueInterface; |
16 | 16 | use Sylius\Component\Product\Model\ProductVariantInterface; |
17 | 17 | use Symfony\Component\Form\DataTransformerInterface; |
18 | -use Symfony\Component\Form\Exception\UnexpectedTypeException; |
|
19 | 18 | use Symfony\Component\Form\Exception\TransformationFailedException; |
19 | +use Symfony\Component\Form\Exception\UnexpectedTypeException; |
|
20 | 20 | |
21 | 21 | /** |
22 | 22 | * @author Paweł Jędrzejewski <[email protected]> |
@@ -225,7 +225,7 @@ |
||
225 | 225 | } |
226 | 226 | |
227 | 227 | /** |
228 | - * @return array |
|
228 | + * @return Filter[] |
|
229 | 229 | */ |
230 | 230 | public function getFilters() |
231 | 231 | { |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | protected $data; |
41 | 41 | |
42 | 42 | /** |
43 | - * @param mixed $message |
|
43 | + * @param \Swift_Message $message |
|
44 | 44 | * @param array $recipients |
45 | 45 | * @param EmailInterface $email |
46 | 46 | * @param array $data |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
57 | - * @return array |
|
57 | + * @return string[] |
|
58 | 58 | */ |
59 | 59 | public function getRecipients() |
60 | 60 | { |
@@ -38,6 +38,7 @@ discard block |
||
38 | 38 | |
39 | 39 | /** |
40 | 40 | * @param null|PaymentMethodInterface $method |
41 | + * @return void |
|
41 | 42 | */ |
42 | 43 | public function setMethod(PaymentMethodInterface $method = null); |
43 | 44 | |
@@ -48,6 +49,7 @@ discard block |
||
48 | 49 | |
49 | 50 | /** |
50 | 51 | * @param string $state |
52 | + * @return void |
|
51 | 53 | */ |
52 | 54 | public function setState($state); |
53 | 55 | |
@@ -58,6 +60,8 @@ discard block |
||
58 | 60 | |
59 | 61 | /** |
60 | 62 | * @param string |
63 | + * @param string $currencyCode |
|
64 | + * @return void |
|
61 | 65 | */ |
62 | 66 | public function setCurrencyCode($currencyCode); |
63 | 67 | |
@@ -68,6 +72,7 @@ discard block |
||
68 | 72 | |
69 | 73 | /** |
70 | 74 | * @param int $amount |
75 | + * @return void |
|
71 | 76 | */ |
72 | 77 | public function setAmount($amount); |
73 | 78 | |
@@ -78,6 +83,7 @@ discard block |
||
78 | 83 | |
79 | 84 | /** |
80 | 85 | * @param array|\Traversable $details |
86 | + * @return void |
|
81 | 87 | */ |
82 | 88 | public function setDetails($details); |
83 | 89 | } |