Completed
Push — master ( cfac17...1a301c )
by Kamil
20:57
created
Sylius/Component/Core/spec/Customer/Statistics/CustomerStatisticsSpec.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,8 @@  discard block
 block discarded – undo
46 46
         $this->getAllOrdersCount()->shouldReturn(0);
47 47
     }
48 48
 
49
-    function it_has_number_of_all_orders(ChannelInterface $channel) {
49
+    function it_has_number_of_all_orders(ChannelInterface $channel)
50
+    {
50 51
         $firstStatistics = new PerChannelCustomerStatistics(110, 120, $channel->getWrappedObject());
51 52
         $secondStatistics = new PerChannelCustomerStatistics(13, 120, $channel->getWrappedObject());
52 53
 
@@ -55,7 +56,8 @@  discard block
 block discarded – undo
55 56
         $this->getAllOrdersCount()->shouldReturn(123);
56 57
     }
57 58
 
58
-    function it_has_an_array_of_statistics_per_channel(ChannelInterface $channel) {
59
+    function it_has_an_array_of_statistics_per_channel(ChannelInterface $channel)
60
+    {
59 61
         $firstStatistics = new PerChannelCustomerStatistics(110, 120, $channel->getWrappedObject());
60 62
         $secondStatistics = new PerChannelCustomerStatistics(13, 120, $channel->getWrappedObject());
61 63
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Admin/ProductVariant/UpdatePageInterface.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -27,11 +27,18 @@  discard block
 block discarded – undo
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
     /**
@@ -63,6 +70,7 @@  discard block
 block discarded – undo
63 70
 
64 71
     /**
65 72
      * @param int $amount
73
+     * @return void
66 74
      */
67 75
     public function specifyCurrentStock($amount);
68 76
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/Factory/AddressExampleFactory.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
             return;
224 224
         }
225 225
 
226
-        if (null !== $options['province_name']){
226
+        if (null !== $options['province_name']) {
227 227
             $this->provideProvince($options, $address);
228 228
         }
229 229
     }
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -223,7 +223,7 @@
 block discarded – undo
223 223
             return;
224 224
         }
225 225
 
226
-        if (null !== $options['province_name']){
226
+        if (null !== $options['province_name']) {
227 227
             $this->provideProvince($options, $address);
228 228
         }
229 229
     }
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/OrderContext.php 2 patches
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -271,7 +271,8 @@
 block discarded – undo
271 271
     /**
272 272
      * @Given /^the customer chose ("[^"]+" shipping method)$/
273 273
      */
274
-    public function theCustomerChoseShippingMethod(ShippingMethodInterface $shippingMethod) {
274
+    public function theCustomerChoseShippingMethod(ShippingMethodInterface $shippingMethod)
275
+    {
275 276
         /** @var OrderInterface $order */
276 277
         $order = $this->sharedStorage->get('order');
277 278
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
 
388 388
             $this->itemQuantityModifier->modify($item, 1);
389 389
 
390
-            $order = $this->createOrder($customer, '#00000'.$i);
390
+            $order = $this->createOrder($customer, '#00000' . $i);
391 391
             $order->addItem($item);
392 392
 
393 393
             $this->checkoutUsing($order, $shippingMethod, clone $address, $paymentMethod);
@@ -486,7 +486,7 @@  discard block
 block discarded – undo
486 486
         $total = $this->getPriceFromString($total);
487 487
 
488 488
         for ($i = 0; $i < $numberOfOrders; $i++) {
489
-            $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#'.uniqid());
489
+            $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#' . uniqid());
490 490
             $order->setState(OrderInterface::STATE_NEW); // Temporary, we should use checkout to place these orders.
491 491
             $this->applyPaymentTransitionOnOrder($order, PaymentTransitions::TRANSITION_COMPLETE);
492 492
 
@@ -513,7 +513,7 @@  discard block
 block discarded – undo
513 513
         $total = $this->getPriceFromString($total);
514 514
 
515 515
         for ($i = 0; $i < $numberOfOrders; $i++) {
516
-            $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#'.uniqid(), $product->getChannels()->first());
516
+            $order = $this->createOrder($customers[rand(0, $numberOfCustomers - 1)], '#' . uniqid(), $product->getChannels()->first());
517 517
             $order->setState(OrderInterface::STATE_NEW);
518 518
             $this->applyPaymentTransitionOnOrder($order, PaymentTransitions::TRANSITION_COMPLETE);
519 519
 
@@ -738,7 +738,7 @@  discard block
 block discarded – undo
738 738
             $customer = $this->customerFactory->createNew();
739 739
             $customer->setEmail(sprintf('john%[email protected]', uniqid()));
740 740
             $customer->setFirstname('John');
741
-            $customer->setLastname('Doe'.$i);
741
+            $customer->setLastname('Doe' . $i);
742 742
 
743 743
             $customers[] = $customer;
744 744
 
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Order/ThankYouPage.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     /**
51 51
      * {@inheritdoc}
52 52
      */
53
-    public function hasInstructions() 
53
+    public function hasInstructions()
54 54
     {
55 55
         return null !== $this->getDocument()->find('css', '#sylius-payment-method-instructions');
56 56
     }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ApiBundle/Controller/TokenController.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
 namespace Sylius\Bundle\ApiBundle\Controller;
13 13
 
14 14
 use FOS\RestBundle\Decoder\DecoderProviderInterface;
15
-use Symfony\Component\HttpFoundation\Request;
16
-use Symfony\Component\HttpFoundation\ParameterBag;
17 15
 use OAuth2\OAuth2;
18 16
 use OAuth2\OAuth2ServerException;
17
+use Symfony\Component\HttpFoundation\ParameterBag;
18
+use Symfony\Component\HttpFoundation\Request;
19 19
 use Symfony\Component\HttpFoundation\Response;
20 20
 use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
21 21
 
Please login to merge, or discard this patch.
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.