Completed
Push — 1.3-php-7.3 ( 701c0c...c8caf4 )
by Kamil
36:57
created
tests/Controller/ProductApiTest.php 1 patch
Upper-Lower-Casing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
                 }
151 151
             }
152 152
         }
153
-EOT;
153
+eot;
154 154
 
155 155
         $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data);
156 156
 
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
                 }
192 192
             }
193 193
         }
194
-EOT;
194
+eot;
195 195
         $this->client->request('PUT', $this->getProductUrl($product), [], [], static::$authorizedHeaderWithContentType, $data);
196 196
         $response = $this->client->getResponse();
197 197
 
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
                 }
218 218
             }
219 219
         }
220
-EOT;
220
+eot;
221 221
         $this->client->request('PATCH', $this->getProductUrl($product), [], [], static::$authorizedHeaderWithContentType, $data);
222 222
         $response = $this->client->getResponse();
223 223
         $this->assertResponseCode($response, Response::HTTP_NO_CONTENT);
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
                 }
276 276
             }
277 277
         }
278
-EOT;
278
+eot;
279 279
 
280 280
         $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data);
281 281
 
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
                 }
305 305
             }
306 306
         }
307
-EOT;
307
+eot;
308 308
 
309 309
         $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data);
310 310
 
@@ -333,7 +333,7 @@  discard block
 block discarded – undo
333 333
             },
334 334
             "productTaxons": "category,mugs"
335 335
         }
336
-EOT;
336
+eot;
337 337
 
338 338
         $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data);
339 339
 
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
                 }
362 362
             }
363 363
         }
364
-EOT;
364
+eot;
365 365
 
366 366
         $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data);
367 367
 
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
                 }
402 402
             }
403 403
         }
404
-EOT;
404
+eot;
405 405
 
406 406
         $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data);
407 407
 
@@ -439,7 +439,7 @@  discard block
 block discarded – undo
439 439
                 }
440 440
             }
441 441
         }
442
-EOT;
442
+eot;
443 443
 
444 444
         $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data);
445 445
 
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
                 }
475 475
             }
476 476
         }
477
-EOT;
477
+eot;
478 478
 
479 479
         $this->client->request(
480 480
             'POST',
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
                 }
518 518
             }
519 519
         }
520
-EOT;
520
+eot;
521 521
 
522 522
         $this->client->request('POST', '/api/v1/products/', [], [], static::$authorizedHeaderWithContentType, $data);
523 523
 
Please login to merge, or discard this patch.
tests/Controller/ProductOptionApiTest.php 1 patch
Upper-Lower-Casing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
                 }
172 172
             ]
173 173
         }
174
-EOT;
174
+eot;
175 175
 
176 176
         $this->client->request('POST', '/api/v1/product-options/', [], [], static::$authorizedHeaderWithContentType, $data);
177 177
 
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
                 }
252 252
             ]
253 253
         }
254
-EOT;
254
+eot;
255 255
 
256 256
         $this->client->request('PUT', $this->getProductOptionUrl($productOption), [], [], static::$authorizedHeaderWithContentType, $data);
257 257
 
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
                 }
323 323
             ]
324 324
         }
325
-EOT;
325
+eot;
326 326
 
327 327
         $this->client->request('PATCH', $this->getProductOptionUrl($productOption), [], [], static::$authorizedHeaderWithContentType, $data);
328 328
 
Please login to merge, or discard this patch.
tests/Controller/CheckoutApiTestCase.php 1 patch
Upper-Lower-Casing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
             "channel": "CHANNEL",
48 48
             "localeCode": "en_US"
49 49
         }
50
-EOT;
50
+eot;
51 51
 
52 52
         $this->client->request('POST', '/api/v1/carts/', [], [], static::$authorizedHeaderWithContentType, $data);
53 53
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
             "variant": "MUG_SW",
72 72
             "quantity": 1
73 73
         }
74
-EOT;
74
+eot;
75 75
 
76 76
         $this->client->request('POST', $url, [], [], static::$authorizedHeaderWithContentType, $data);
77 77
         $this->assertResponseCode($this->client->getResponse(), Response::HTTP_CREATED);
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
             },
106 106
             "differentBillingAddress": true
107 107
         }
108
-EOT;
108
+eot;
109 109
 
110 110
         $url = sprintf('/api/v1/checkouts/addressing/%d', $cartId);
111 111
         $this->client->request('PUT', $url, [], [], static::$authorizedHeaderWithContentType, $data);
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
                 }
134 134
             ]
135 135
         }
136
-EOT;
136
+eot;
137 137
 
138 138
         $this->client->request('PUT', $url, [], [], static::$authorizedHeaderWithContentType, $data);
139 139
         $this->assertResponseCode($this->client->getResponse(), Response::HTTP_NO_CONTENT);
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
                 }
161 161
             ]
162 162
         }
163
-EOT;
163
+eot;
164 164
 
165 165
         $this->client->request('PUT', $url, [], [], static::$authorizedHeaderWithContentType, $data);
166 166
         $this->assertResponseCode($this->client->getResponse(), Response::HTTP_NO_CONTENT);
Please login to merge, or discard this patch.
src/Sylius/Behat/Context/Setup/PromotionContext.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -354,6 +354,7 @@  discard block
 block discarded – undo
354 354
 
355 355
     /**
356 356
      * @Given /^([^"]+) gives ("[^"]+%") discount on shipping to every order$/
357
+     * @param integer $discount
357 358
      */
358 359
     public function itGivesPercentageDiscountOnShippingToEveryOrder(PromotionInterface $promotion, $discount)
359 360
     {
@@ -677,6 +678,7 @@  discard block
 block discarded – undo
677 678
 
678 679
     /**
679 680
      * @Given /^([^"]+) gives ("[^"]+%") discount on shipping to every order over ("(?:€|£|\$)[^"]+")$/
681
+     * @param integer $discount
680 682
      */
681 683
     public function itGivesDiscountOnShippingToEveryOrderOver(
682 684
         PromotionInterface $promotion,
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Metadata/MetadataInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     public function getDriver(): string;
50 50
 
51 51
     /**
52
-     * @return ?string
52
+     * @return string
53 53
      */
54 54
     public function getTemplatesNamespace(): ?string;
55 55
 
Please login to merge, or discard this patch.
src/Sylius/Component/Resource/Model/ToggleableInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -25,10 +25,17 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param bool $enabled
28
+     * @return void
28 29
      */
29 30
     public function setEnabled(?bool $enabled): void;
30 31
 
32
+    /**
33
+     * @return void
34
+     */
31 35
     public function enable(): void;
32 36
 
37
+    /**
38
+     * @return void
39
+     */
33 40
     public function disable(): void;
34 41
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/InventoryBundle/Twig/InventoryExtension.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,8 +39,8 @@
 block discarded – undo
39 39
     public function getFunctions(): array
40 40
     {
41 41
         return [
42
-             new \Twig_Function('sylius_inventory_is_available', [$this->helper, 'isStockAvailable']),
43
-             new \Twig_Function('sylius_inventory_is_sufficient', [$this->helper, 'isStockSufficient']),
42
+                new \Twig_Function('sylius_inventory_is_available', [$this->helper, 'isStockAvailable']),
43
+                new \Twig_Function('sylius_inventory_is_sufficient', [$this->helper, 'isStockSufficient']),
44 44
         ];
45 45
     }
46 46
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductOptionTranslationInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param string $name
30
+     * @return void
30 31
      */
31 32
     public function setName(?string $name): void;
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/ResourceBundle/spec/Controller/ResourceControllerSpec.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@
 block discarded – undo
27 27
 use Sylius\Bundle\ResourceBundle\Controller\RequestConfigurationFactoryInterface;
28 28
 use Sylius\Bundle\ResourceBundle\Controller\ResourceDeleteHandlerInterface;
29 29
 use Sylius\Bundle\ResourceBundle\Controller\ResourceFormFactoryInterface;
30
-use Sylius\Bundle\ResourceBundle\Controller\ResourcesCollectionProviderInterface;
31 30
 use Sylius\Bundle\ResourceBundle\Controller\ResourceUpdateHandlerInterface;
31
+use Sylius\Bundle\ResourceBundle\Controller\ResourcesCollectionProviderInterface;
32 32
 use Sylius\Bundle\ResourceBundle\Controller\SingleResourceProviderInterface;
33 33
 use Sylius\Bundle\ResourceBundle\Controller\StateMachineInterface;
34 34
 use Sylius\Bundle\ResourceBundle\Controller\ViewHandlerInterface;
Please login to merge, or discard this patch.