Completed
Push — component-bundle ( 0f1f3e )
by Kamil
35:06
created
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.
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
             "firstName": "John",
302 302
             "lastName": "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.
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.
src/Sylius/Component/Product/Model/Product.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -505,6 +505,7 @@
 block discarded – undo
505 505
 
506 506
     /**
507 507
      * {@inheritdoc}
508
+     * @param string $localeCode
508 509
      */
509 510
     private function getAttributeInDifferentLocale(ProductAttributeValueInterface $attributeValue, $localeCode)
510 511
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@
 block discarded – undo
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]>
Please login to merge, or discard this patch.
app/migrations/Version20170109143010.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.
Form/DataTransformer/ProductVariantToProductOptionsTransformer.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
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]>
Please login to merge, or discard this patch.