Completed
Push — unused-compiler-pass ( 93ebf5 )
by Kamil
31:23 queued 11:08
created
tests/Controller/OrderApiTest.php 2 patches
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,6 +91,6 @@
 block discarded – undo
91 91
 
92 92
   <info>php %command.full_name% web --symlink --relative</info>
93 93
 
94
-EOT;
94
+eot;
95 95
     }
96 96
 }
Please login to merge, or discard this patch.
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.
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/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.
src/Sylius/Component/Attribute/Model/AttributeValueInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -36,11 +36,13 @@  discard block
 block discarded – undo
36 36
 
37 37
     /**
38 38
      * @param string $locale
39
+     * @return void
39 40
      */
40 41
     public function setCurrentLocale($locale);
41 42
 
42 43
     /**
43 44
      * @param string $locale
45
+     * @return void
44 46
      */
45 47
     public function setFallbackLocale($locale);
46 48
 
@@ -51,11 +53,13 @@  discard block
 block discarded – undo
51 53
 
52 54
     /**
53 55
      * @param TranslationInterface $translation
56
+     * @return void
54 57
      */
55 58
     public function addTranslation(TranslationInterface $translation);
56 59
 
57 60
     /**
58 61
      * @param TranslationInterface $translation
62
+     * @return void
59 63
      */
60 64
     public function removeTranslation(TranslationInterface $translation);
61 65
 }
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,8 +13,8 @@
 block discarded – undo
13 13
 
14 14
 use Sylius\Component\Grid\DataExtractor\DataExtractorInterface;
15 15
 use Sylius\Component\Grid\Definition\Field;
16
-use Webmozart\Assert\Assert;
17 16
 use Symfony\Component\OptionsResolver\OptionsResolver;
17
+use Webmozart\Assert\Assert;
18 18
 
19 19
 /**
20 20
  * @author Mateusz Zalewski <[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.
src/Sylius/Behat/Page/Admin/ShippingMethod/IndexPageInterface.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 $value
30
+     * @return void
30 31
      */
31 32
     public function setValue($value);
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Bundle/CoreBundle/Fixture/GeographicalFixture.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,9 +4,9 @@
 block discarded – undo
4 4
 
5 5
 use Doctrine\Common\Persistence\ObjectManager;
6 6
 use PhpSpec\ObjectBehavior;
7
-use Sylius\Component\Addressing\Factory\ZoneFactoryInterface;
8 7
 use Sylius\Bundle\CoreBundle\Fixture\GeographicalFixture;
9 8
 use Sylius\Bundle\FixturesBundle\Fixture\FixtureInterface;
9
+use Sylius\Component\Addressing\Factory\ZoneFactoryInterface;
10 10
 use Sylius\Component\Addressing\Model\CountryInterface;
11 11
 use Sylius\Component\Addressing\Model\ProvinceInterface;
12 12
 use Sylius\Component\Addressing\Model\ZoneInterface;
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.