Completed
Push — unused-compiler-pass ( 93ebf5 )
by Kamil
31:23 queued 11:08
created
src/Sylius/Bundle/CoreBundle/Assigner/IpAssignerInterface.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/Controller/ProductTaxonController.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 {
30 30
     /**
31 31
      * @param Request $request
32
-     * @return \Symfony\Component\HttpFoundation\RedirectResponse
32
+     * @return JsonResponse
33 33
      */
34 34
     public function updatePositionsAction(Request $request)
35 35
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,6 @@
 block discarded – undo
11 11
 
12 12
 namespace Sylius\Bundle\CoreBundle\Controller;
13 13
 
14
-use Sylius\Bundle\ResourceBundle\Controller\RedirectHandlerInterface;
15 14
 use Sylius\Bundle\ResourceBundle\Controller\ResourceController;
16 15
 use Sylius\Component\Core\Model\ProductTaxonInterface;
17 16
 use Sylius\Component\Resource\ResourceActions;
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductTaxonInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -39,6 +39,7 @@  discard block
 block discarded – undo
39 39
      * Sets all option values.
40 40
      *
41 41
      * @param Collection $optionValues
42
+     * @return void
42 43
      */
43 44
     public function setValues(Collection $optionValues);
44 45
 
@@ -46,6 +47,7 @@  discard block
 block discarded – undo
46 47
      * Adds option value.
47 48
      *
48 49
      * @param OptionValueInterface $optionValue
50
+     * @return void
49 51
      */
50 52
     public function addValue(OptionValueInterface $optionValue);
51 53
 
@@ -53,6 +55,7 @@  discard block
 block discarded – undo
53 55
      * Removes option value.
54 56
      *
55 57
      * @param OptionValueInterface $optionValue
58
+     * @return void
56 59
      */
57 60
     public function removeValue(OptionValueInterface $optionValue);
58 61
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/ProductTaxonsAwareInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param OptionInterface $option
30
+     * @return void
30 31
      */
31 32
     public function setOption(OptionInterface $option = null);
32 33
 
@@ -41,6 +42,7 @@  discard block
 block discarded – undo
41 42
      * Set internal value.
42 43
      *
43 44
      * @param string $value
45
+     * @return void
44 46
      */
45 47
     public function setValue($value);
46 48
 
Please login to merge, or discard this patch.
src/Sylius/Component/Core/Model/TaxonInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param OptionInterface $option
30
+     * @return void
30 31
      */
31 32
     public function setOption(OptionInterface $option = null);
32 33
 
@@ -41,6 +42,7 @@  discard block
 block discarded – undo
41 42
      * Set internal value.
42 43
      *
43 44
      * @param string $value
45
+     * @return void
44 46
      */
45 47
     public function setValue($value);
46 48
 
Please login to merge, or discard this patch.
ProductBundle/spec/Validator/UniqueSimpleProductCodeValidatorSpec.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,8 @@
 block discarded – undo
24 24
 
25 25
 final class UniqueSimpleProductCodeValidatorSpec extends ObjectBehavior
26 26
 {
27
-    function let(ExecutionContextInterface $context, ProductVariantRepositoryInterface $productVariantRepository) {
27
+    function let(ExecutionContextInterface $context, ProductVariantRepositoryInterface $productVariantRepository)
28
+    {
28 29
         $this->beConstructedWith($productVariantRepository);
29 30
         $this->initialize($context);
30 31
     }
Please login to merge, or discard this patch.
Sylius/Component/Core/Test/Services/DefaultUnitedStatesChannelFactory.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -174,6 +174,8 @@  discard block
 block discarded – undo
174 174
     }
175 175
 
176 176
     /**
177
+     * @param string $code
178
+     * @param string $name
177 179
      * @return ChannelInterface
178 180
      */
179 181
     private function createChannel($code, $name)
@@ -197,6 +199,7 @@  discard block
 block discarded – undo
197 199
     }
198 200
 
199 201
     /**
202
+     * @param string $currencyCode
200 203
      * @return CurrencyInterface
201 204
      */
202 205
     private function provideCurrency($currencyCode = null)
Please login to merge, or discard this patch.
src/Sylius/Behat/Page/Shop/Product/ShowPageInterface.php 1 patch
Doc Comments   +9 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,6 +24,7 @@  discard block
 block discarded – undo
24 24
 {
25 25
     /**
26 26
      * @throws ElementNotFoundException
27
+     * @return void
27 28
      */
28 29
     public function addToCart();
29 30
 
@@ -31,6 +32,7 @@  discard block
 block discarded – undo
31 32
      * @param string $quantity
32 33
      *
33 34
      * @throws ElementNotFoundException
35
+     * @return void
34 36
      */
35 37
     public function addToCartWithQuantity($quantity);
36 38
 
@@ -38,6 +40,7 @@  discard block
 block discarded – undo
38 40
      * @param string $variant
39 41
      *
40 42
      * @throws ElementNotFoundException
43
+     * @return void
41 44
      */
42 45
     public function addToCartWithVariant($variant);
43 46
 
@@ -46,6 +49,7 @@  discard block
 block discarded – undo
46 49
      * @param string $optionValue
47 50
      *
48 51
      * @throws ElementNotFoundException
52
+     * @return void
49 53
      */
50 54
     public function addToCartWithOption(ProductOptionInterface $option, $optionValue);
51 55
 
@@ -56,6 +60,7 @@  discard block
 block discarded – undo
56 60
 
57 61
     /**
58 62
      * @param string $url
63
+     * @return void
59 64
      */
60 65
     public function visit($url);
61 66
 
@@ -67,7 +72,7 @@  discard block
 block discarded – undo
67 72
     public function getAttributeByName($attributeName);
68 73
 
69 74
     /**
70
-     * @return array
75
+     * @return \Behat\Mink\Element\NodeElement[]
71 76
      */
72 77
     public function getAttributes();
73 78
 
@@ -80,6 +85,7 @@  discard block
 block discarded – undo
80 85
 
81 86
     /**
82 87
      * @param int $timeout
88
+     * @return void
83 89
      */
84 90
     public function waitForValidationErrors($timeout);
85 91
 
@@ -123,11 +129,13 @@  discard block
 block discarded – undo
123 129
     /**
124 130
      * @param string $optionName
125 131
      * @param string $optionValue
132
+     * @return void
126 133
      */
127 134
     public function selectOption($optionName, $optionValue);
128 135
 
129 136
     /**
130 137
      * @param string $variantName
138
+     * @return void
131 139
      */
132 140
     public function selectVariant($variantName);
133 141
 
Please login to merge, or discard this patch.
src/Sylius/Component/Attribute/Model/AttributeInterface.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.