Completed
Push — assert-overflow ( 0688b3...fbf83a )
by Kamil
66:00 queued 44:43
created
tests/Controller/CurrencyApiTest.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
145 145
         $currencies = $this->loadFixturesFromFile('resources/currencies.yml');
146 146
 
147
-        $this->client->request('GET', '/api/v1/currencies/'.$currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithAccept);
147
+        $this->client->request('GET', '/api/v1/currencies/' . $currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithAccept);
148 148
 
149 149
         $response = $this->client->getResponse();
150 150
         $this->assertResponse($response, 'currency/show_response', Response::HTTP_OK);
@@ -171,12 +171,12 @@  discard block
 block discarded – undo
171 171
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
172 172
         $currencies = $this->loadFixturesFromFile('resources/currencies.yml');
173 173
 
174
-        $this->client->request('DELETE', '/api/v1/currencies/'.$currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithContentType, []);
174
+        $this->client->request('DELETE', '/api/v1/currencies/' . $currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithContentType, []);
175 175
 
176 176
         $response = $this->client->getResponse();
177 177
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
178 178
 
179
-        $this->client->request('GET', '/api/v1/currencies/'.$currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithAccept);
179
+        $this->client->request('GET', '/api/v1/currencies/' . $currencies['currency_1']->getCode(), [], [], static::$authorizedHeaderWithAccept);
180 180
 
181 181
         $response = $this->client->getResponse();
182 182
         $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND);
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
         {
79 79
             "code": "USD"
80 80
         }
81
-EOT;
81
+eot;
82 82
 
83 83
         $this->client->request('POST', '/api/v1/currencies/', [], [], static::$authorizedHeaderWithContentType, $data);
84 84
 
Please login to merge, or discard this patch.
tests/Controller/ZoneApiTest.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
148 148
         $zones = $this->loadFixturesFromFile('resources/zones.yml');
149 149
 
150
-        $this->client->request('GET', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
150
+        $this->client->request('GET', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
151 151
 
152 152
         $response = $this->client->getResponse();
153 153
         $this->assertResponse($response, 'zone/show_response', Response::HTTP_OK);
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         $this->loadFixturesFromFile('resources/countries.yml');
187 187
         $zones = $this->loadFixturesFromFile('resources/zones.yml');
188 188
 
189
-        $this->client->request('PUT', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType);
189
+        $this->client->request('PUT', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType);
190 190
 
191 191
         $response = $this->client->getResponse();
192 192
         $this->assertResponse($response, 'zone/update_validation_fail_response', Response::HTTP_BAD_REQUEST);
@@ -214,12 +214,12 @@  discard block
 block discarded – undo
214 214
         }
215 215
 EOT;
216 216
 
217
-        $this->client->request('PUT', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data);
217
+        $this->client->request('PUT', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data);
218 218
 
219 219
         $response = $this->client->getResponse();
220 220
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
221 221
 
222
-        $this->client->request('GET', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
222
+        $this->client->request('GET', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
223 223
 
224 224
         $response = $this->client->getResponse();
225 225
         $this->assertResponse($response, 'zone/update_response', Response::HTTP_OK);
@@ -265,12 +265,12 @@  discard block
 block discarded – undo
265 265
         }
266 266
 EOT;
267 267
 
268
-        $this->client->request('PATCH', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data);
268
+        $this->client->request('PATCH', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data);
269 269
 
270 270
         $response = $this->client->getResponse();
271 271
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
272 272
 
273
-        $this->client->request('GET', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
273
+        $this->client->request('GET', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
274 274
 
275 275
         $response = $this->client->getResponse();
276 276
         $this->assertResponse($response, 'zone/update_response', Response::HTTP_OK);
@@ -308,12 +308,12 @@  discard block
 block discarded – undo
308 308
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
309 309
         $zones = $this->loadFixturesFromFile('resources/zones.yml');
310 310
 
311
-        $this->client->request('DELETE', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType);
311
+        $this->client->request('DELETE', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType);
312 312
 
313 313
         $response = $this->client->getResponse();
314 314
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
315 315
 
316
-        $this->client->request('GET', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
316
+        $this->client->request('GET', '/api/v1/zones/' . $zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithAccept);
317 317
 
318 318
         $response = $this->client->getResponse();
319 319
         $this->assertResponseCode($response, Response::HTTP_NOT_FOUND);
Please login to merge, or discard this patch.
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
                 }
83 83
             ]
84 84
         }
85
-EOT;
85
+eot;
86 86
 
87 87
         $this->client->request('POST', '/api/v1/zones/country', [], [], static::$authorizedHeaderWithContentType, $data);
88 88
 
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
                 }
213 213
             ]
214 214
         }
215
-EOT;
215
+eot;
216 216
 
217 217
         $this->client->request('PUT', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data);
218 218
 
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
         {
264 264
             "name": "European Union +"
265 265
         }
266
-EOT;
266
+eot;
267 267
 
268 268
         $this->client->request('PATCH', '/api/v1/zones/'.$zones['zone_eu']->getCode(), [], [], static::$authorizedHeaderWithContentType, $data);
269 269
 
Please login to merge, or discard this patch.
tests/Controller/ShippingCategoryApiTest.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
134 134
         $shippingCategories = $this->loadFixturesFromFile('resources/shipping_categories.yml');
135 135
 
136
-        $this->client->request('GET', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
136
+        $this->client->request('GET', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
137 137
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
138 138
             'ACCEPT' => 'application/json',
139 139
         ]);
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
178 178
         $shippingCategories = $this->loadFixturesFromFile('resources/shipping_categories.yml');
179 179
 
180
-        $this->client->request('PUT', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
180
+        $this->client->request('PUT', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
181 181
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
182 182
             'CONTENT_TYPE' => 'application/json',
183 183
         ]);
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
         }
203 203
 EOT;
204 204
 
205
-        $this->client->request('PUT', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
205
+        $this->client->request('PUT', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
206 206
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
207 207
             'CONTENT_TYPE' => 'application/json',
208 208
         ], $data);
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
         $response = $this->client->getResponse();
211 211
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
212 212
 
213
-        $this->client->request('GET', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
213
+        $this->client->request('GET', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
214 214
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
215 215
             'ACCEPT' => 'application/json',
216 216
         ]);
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
         }
252 252
 EOT;
253 253
 
254
-        $this->client->request('PATCH', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
254
+        $this->client->request('PATCH', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
255 255
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
256 256
             'CONTENT_TYPE' => 'application/json',
257 257
         ], $data);
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
         $response = $this->client->getResponse();
260 260
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
261 261
 
262
-        $this->client->request('GET', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
262
+        $this->client->request('GET', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
263 263
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
264 264
             'ACCEPT' => 'application/json',
265 265
         ]);
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
293 293
         $shippingCategories = $this->loadFixturesFromFile('resources/shipping_categories.yml');
294 294
 
295
-        $this->client->request('DELETE', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
295
+        $this->client->request('DELETE', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
296 296
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
297 297
             'CONTENT_TYPE' => 'application/json',
298 298
         ], []);
@@ -300,7 +300,7 @@  discard block
 block discarded – undo
300 300
         $response = $this->client->getResponse();
301 301
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
302 302
 
303
-        $this->client->request('GET', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
303
+        $this->client->request('GET', '/api/v1/shipping-categories/' . $shippingCategories['shipping_category_1']->getId(), [], [], [
304 304
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
305 305
             'ACCEPT' => 'application/json',
306 306
         ]);
Please login to merge, or discard this patch.
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
             "name": "Regular",
61 61
             "description": "Regular weight items"
62 62
         }
63
-EOT;
63
+eot;
64 64
 
65 65
         $this->client->request('POST', '/api/v1/shipping-categories/', [], [], [
66 66
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
             "name": "Light",
201 201
             "description": "Light weight items"
202 202
         }
203
-EOT;
203
+eot;
204 204
 
205 205
         $this->client->request('PUT', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
206 206
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
             "name": "Light",
250 250
             "description": "Light weight items"
251 251
         }
252
-EOT;
252
+eot;
253 253
 
254 254
         $this->client->request('PATCH', '/api/v1/shipping-categories/'.$shippingCategories['shipping_category_1']->getId(), [], [], [
255 255
             'HTTP_Authorization' => 'Bearer SampleTokenNjZkNjY2MDEwMTAzMDkxMGE0OTlhYzU3NzYyMTE0ZGQ3ODcyMDAwM2EwMDZjNDI5NDlhMDdlMQ',
Please login to merge, or discard this patch.
tests/Controller/CustomerApiTest.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
188 188
         $customers = $this->loadFixturesFromFile('resources/customers.yml');
189 189
 
190
-        $this->client->request('GET', '/api/v1/customers/'.$customers['customer_Barry']->getId(), [], [], static::$authorizedHeaderWithAccept);
190
+        $this->client->request('GET', '/api/v1/customers/' . $customers['customer_Barry']->getId(), [], [], static::$authorizedHeaderWithAccept);
191 191
 
192 192
         $response = $this->client->getResponse();
193 193
         $this->assertResponse($response, 'customer/show_response', Response::HTTP_OK);
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
202 202
         $customers = $this->loadFixturesFromFile('resources/customers.yml');
203 203
 
204
-        $this->client->request('GET', '/api/v1/customers/'.$customers['customer_Roy']->getId(), [], [], static::$authorizedHeaderWithAccept);
204
+        $this->client->request('GET', '/api/v1/customers/' . $customers['customer_Roy']->getId(), [], [], static::$authorizedHeaderWithAccept);
205 205
 
206 206
         $response = $this->client->getResponse();
207 207
         $this->assertResponse($response, 'customer/show_with_user_response', Response::HTTP_OK);
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
240 240
         $customers = $this->loadFixturesFromFile('resources/customers.yml');
241 241
 
242
-        $this->client->request('PUT', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType);
242
+        $this->client->request('PUT', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType);
243 243
 
244 244
         $response = $this->client->getResponse();
245 245
         $this->assertResponse($response, 'customer/update_validation_fail_response', Response::HTTP_BAD_REQUEST);
@@ -263,12 +263,12 @@  discard block
 block discarded – undo
263 263
         }
264 264
 EOT;
265 265
 
266
-        $this->client->request('PUT', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data);
266
+        $this->client->request('PUT', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data);
267 267
 
268 268
         $response = $this->client->getResponse();
269 269
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
270 270
 
271
-        $this->client->request('GET', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept);
271
+        $this->client->request('GET', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept);
272 272
 
273 273
         $response = $this->client->getResponse();
274 274
         $this->assertResponse($response, 'customer/update_response', Response::HTTP_OK);
@@ -303,12 +303,12 @@  discard block
 block discarded – undo
303 303
         }
304 304
 EOT;
305 305
 
306
-        $this->client->request('PATCH', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data);
306
+        $this->client->request('PATCH', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data);
307 307
 
308 308
         $response = $this->client->getResponse();
309 309
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
310 310
 
311
-        $this->client->request('GET', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept);
311
+        $this->client->request('GET', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept);
312 312
 
313 313
         $response = $this->client->getResponse();
314 314
         $this->assertResponse($response, 'customer/partial_update_response', Response::HTTP_OK);
@@ -346,12 +346,12 @@  discard block
 block discarded – undo
346 346
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
347 347
         $customers = $this->loadFixturesFromFile('resources/customers.yml');
348 348
 
349
-        $this->client->request('DELETE', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType);
349
+        $this->client->request('DELETE', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType);
350 350
 
351 351
         $response = $this->client->getResponse();
352 352
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
353 353
 
354
-        $this->client->request('GET', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept);
354
+        $this->client->request('GET', '/api/v1/customers/' . $customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithAccept);
355 355
 
356 356
         $response = $this->client->getResponse();
357 357
         $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND);
Please login to merge, or discard this patch.
Upper-Lower-Casing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
                 "enabled": "true"
74 74
             }
75 75
         }
76
-EOT;
76
+eot;
77 77
 
78 78
         $this->client->request('POST', '/api/v1/customers/', [], [], static::$authorizedHeaderWithContentType, $data);
79 79
 
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
             "email": "[email protected]",
97 97
             "gender": "m"
98 98
         }
99
-EOT;
99
+eot;
100 100
 
101 101
         $this->client->request('POST', '/api/v1/customers/', [], [], static::$authorizedHeaderWithContentType, $data);
102 102
 
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                 "plainPassword" : "testPassword"
123 123
             }
124 124
         }
125
-EOT;
125
+eot;
126 126
 
127 127
         $this->client->request('POST', '/api/v1/customers/', [], [], static::$authorizedHeaderWithContentType, $data);
128 128
 
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
             "email": "[email protected]",
262 262
             "gender": "m"
263 263
         }
264
-EOT;
264
+eot;
265 265
 
266 266
         $this->client->request('PUT', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data);
267 267
 
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
             "first_name": "John",
302 302
             "last_name": "Doe"
303 303
         }
304
-EOT;
304
+eot;
305 305
 
306 306
         $this->client->request('PATCH', '/api/v1/customers/'.$customers['customer_Oliver']->getId(), [], [], static::$authorizedHeaderWithContentType, $data);
307 307
 
Please login to merge, or discard this patch.
tests/Controller/ProvinceApiTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
47 47
         $countryData = $this->loadFixturesFromFile('resources/countries.yml');
48 48
 
49
-        $this->client->request('GET', '/api/v1/countries/'.$countryData['country_BE']->getCode().'/provinces/'.$countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType);
49
+        $this->client->request('GET', '/api/v1/countries/' . $countryData['country_BE']->getCode() . '/provinces/' . $countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType);
50 50
 
51 51
         $response = $this->client->getResponse();
52 52
         $this->assertResponse($response, 'province/show_response', Response::HTTP_OK);
@@ -60,12 +60,12 @@  discard block
 block discarded – undo
60 60
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
61 61
         $countryData = $this->loadFixturesFromFile('resources/countries.yml');
62 62
 
63
-        $this->client->request('DELETE', '/api/v1/countries/'.$countryData['country_BE']->getCode().'/provinces/'.$countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType);
63
+        $this->client->request('DELETE', '/api/v1/countries/' . $countryData['country_BE']->getCode() . '/provinces/' . $countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType);
64 64
 
65 65
         $response = $this->client->getResponse();
66 66
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
67 67
 
68
-        $this->client->request('GET', '/api/v1/countries/'.$countryData['country_BE']->getCode().'/provinces/'.$countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType);
68
+        $this->client->request('GET', '/api/v1/countries/' . $countryData['country_BE']->getCode() . '/provinces/' . $countryData['province_BE_limburg']->getCode(), [], [], static::$authorizedHeaderWithContentType);
69 69
 
70 70
         $response = $this->client->getResponse();
71 71
         $this->assertResponse($response, 'error/not_found_response', Response::HTTP_NOT_FOUND);
Please login to merge, or discard this patch.
tests/Controller/CountryApiTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
         $this->loadFixturesFromFile('authentication/api_administrator.yml');
115 115
         $countries = $this->loadFixturesFromFile('resources/countries.yml');
116 116
 
117
-        $this->client->request('GET', '/api/v1/countries/'.$countries['country_NL']->getCode(), [], [], static::$authorizedHeaderWithAccept);
117
+        $this->client->request('GET', '/api/v1/countries/' . $countries['country_NL']->getCode(), [], [], static::$authorizedHeaderWithAccept);
118 118
 
119 119
         $response = $this->client->getResponse();
120 120
         $this->assertResponse($response, 'country/show_response', Response::HTTP_OK);
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
         {
72 72
             "code": "BE"
73 73
         }
74
-EOT;
74
+eot;
75 75
 
76 76
         $this->client->request('POST', '/api/v1/countries/', [], [], static::$authorizedHeaderWithContentType, $data);
77 77
 
Please login to merge, or discard this patch.
tests/Controller/OrderApiTest.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
tests/Controller/TaxCategoryApiTest.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
         ]);
Please login to merge, or discard this patch.
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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',
Please login to merge, or discard this patch.
Sylius/Bundle/ResourceBundle/test/src/Tests/Controller/ComicBookApiTest.php 3 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
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"
Please login to merge, or discard this patch.
Upper-Lower-Casing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.