Completed
Push — locale-in-url ( 6d9eda )
by Kamil
23:08
created
src/Sylius/Component/Product/Model/ProductAssociationTypeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.
Component/Product/Model/ProductAssociationTypeTranslationInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductAttributeValueInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -25,6 +25,7 @@
 block discarded – undo
25 25
 
26 26
     /**
27 27
      * @param ProductInterface|null $product
28
+     * @return void
28 29
      */
29 30
     public function setProduct(ProductInterface $product = null);
30 31
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductOptionInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -32,6 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * @param int $position
35
+     * @return void
35 36
      */
36 37
     public function setPosition($position);
37 38
 
@@ -42,11 +43,13 @@  discard block
 block discarded – undo
42 43
 
43 44
     /**
44 45
      * @param ProductOptionValueInterface $optionValue
46
+     * @return void
45 47
      */
46 48
     public function addValue(ProductOptionValueInterface $optionValue);
47 49
 
48 50
     /**
49 51
      * @param ProductOptionValueInterface $optionValue
52
+     * @return void
50 53
      */
51 54
     public function removeValue(ProductOptionValueInterface $optionValue);
52 55
 
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
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductOptionValueInterface.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 ProductOptionInterface $option
30
+     * @return void
30 31
      */
31 32
     public function setOption(ProductOptionInterface $option = null);
32 33
 
@@ -37,6 +38,7 @@  discard block
 block discarded – undo
37 38
 
38 39
     /**
39 40
      * @param string $value
41
+     * @return void
40 42
      */
41 43
     public function setValue($value);
42 44
 
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductVariant.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Doctrine\Common\Collections\Collection;
16 16
 use Sylius\Component\Resource\Model\TimestampableTrait;
17 17
 use Sylius\Component\Resource\Model\TranslatableTrait;
18
-use Sylius\Component\Resource\Model\TranslationInterface;
19 18
 
20 19
 /**
21 20
  * @author Paweł Jędrzejewski <[email protected]>
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductVariantInterface.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * @param string $name
36
+     * @return void
36 37
      */
37 38
     public function setName($name);
38 39
 
@@ -43,11 +44,13 @@  discard block
 block discarded – undo
43 44
 
44 45
     /**
45 46
      * @param ProductOptionValueInterface $optionValue
47
+     * @return void
46 48
      */
47 49
     public function addOptionValue(ProductOptionValueInterface $optionValue);
48 50
 
49 51
     /**
50 52
      * @param ProductOptionValueInterface $optionValue
53
+     * @return void
51 54
      */
52 55
     public function removeOptionValue(ProductOptionValueInterface $optionValue);
53 56
 
@@ -65,6 +68,7 @@  discard block
 block discarded – undo
65 68
 
66 69
     /**
67 70
      * @param null|ProductInterface $product
71
+     * @return void
68 72
      */
69 73
     public function setProduct(ProductInterface $product = null);
70 74
 
@@ -80,6 +84,7 @@  discard block
 block discarded – undo
80 84
 
81 85
     /**
82 86
      * @param \DateTime|null $availableOn
87
+     * @return void
83 88
      */
84 89
     public function setAvailableOn(\DateTime $availableOn = null);
85 90
 
@@ -90,6 +95,7 @@  discard block
 block discarded – undo
90 95
 
91 96
     /**
92 97
      * @param \DateTime|null $availableUntil
98
+     * @return void
93 99
      */
94 100
     public function setAvailableUntil(\DateTime $availableUntil = null);
95 101
 
@@ -100,6 +106,7 @@  discard block
 block discarded – undo
100 106
 
101 107
     /**
102 108
      * @param int $position
109
+     * @return void
103 110
      */
104 111
     public function setPosition($position);
105 112
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductVariantTranslationInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string $name
31
+     * @return void
31 32
      */
32 33
     public function setName($name);
33 34
 }
Please login to merge, or discard this patch.