Completed
Push — pull-request/8500 ( e49efc...54b484 )
by Kamil
36:05 queued 17:36
created
Component/Product/Model/ProductAssociationTypeTranslationInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param string|null $name
32
+     * @return void
32 33
      */
33 34
     public function setName(?string $name): void;
34 35
 }
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
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param ProductInterface|null $product
30
+     * @return void
30 31
      */
31 32
     public function setProduct(?ProductInterface $product): void;
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductInterface.php 1 patch
Doc Comments   +10 added lines patch added patch discarded remove patch
@@ -42,6 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
     /**
44 44
      * @param string|null $name
45
+     * @return void
45 46
      */
46 47
     public function setName(?string $name): void;
47 48
 
@@ -52,6 +53,7 @@  discard block
 block discarded – undo
52 53
 
53 54
     /**
54 55
      * @param string|null $description
56
+     * @return void
55 57
      */
56 58
     public function setDescription(?string $description): void;
57 59
 
@@ -62,6 +64,7 @@  discard block
 block discarded – undo
62 64
 
63 65
     /**
64 66
      * @param string|null $metaKeywords
67
+     * @return void
65 68
      */
66 69
     public function setMetaKeywords(?string $metaKeywords): void;
67 70
 
@@ -72,6 +75,7 @@  discard block
 block discarded – undo
72 75
 
73 76
     /**
74 77
      * @param string|null $metaDescription
78
+     * @return void
75 79
      */
76 80
     public function setMetaDescription(?string $metaDescription): void;
77 81
 
@@ -87,11 +91,13 @@  discard block
 block discarded – undo
87 91
 
88 92
     /**
89 93
      * @param ProductVariantInterface $variant
94
+     * @return void
90 95
      */
91 96
     public function addVariant(ProductVariantInterface $variant): void;
92 97
 
93 98
     /**
94 99
      * @param ProductVariantInterface $variant
100
+     * @return void
95 101
      */
96 102
     public function removeVariant(ProductVariantInterface $variant): void;
97 103
 
@@ -114,11 +120,13 @@  discard block
 block discarded – undo
114 120
 
115 121
     /**
116 122
      * @param ProductOptionInterface $option
123
+     * @return void
117 124
      */
118 125
     public function addOption(ProductOptionInterface $option): void;
119 126
 
120 127
     /**
121 128
      * @param ProductOptionInterface $option
129
+     * @return void
122 130
      */
123 131
     public function removeOption(ProductOptionInterface $option): void;
124 132
 
@@ -136,11 +144,13 @@  discard block
 block discarded – undo
136 144
 
137 145
     /**
138 146
      * @param ProductAssociationInterface $association
147
+     * @return void
139 148
      */
140 149
     public function addAssociation(ProductAssociationInterface $association): void;
141 150
 
142 151
     /**
143 152
      * @param ProductAssociationInterface $association
153
+     * @return void
144 154
      */
145 155
     public function removeAssociation(ProductAssociationInterface $association): void;
146 156
 
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
@@ -34,6 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     /**
36 36
      * @param int $position
37
+     * @return void
37 38
      */
38 39
     public function setPosition(?int $position): void;
39 40
 
@@ -44,11 +45,13 @@  discard block
 block discarded – undo
44 45
 
45 46
     /**
46 47
      * @param ProductOptionValueInterface $optionValue
48
+     * @return void
47 49
      */
48 50
     public function addValue(ProductOptionValueInterface $optionValue): void;
49 51
 
50 52
     /**
51 53
      * @param ProductOptionValueInterface $optionValue
54
+     * @return void
52 55
      */
53 56
     public function removeValue(ProductOptionValueInterface $optionValue): void;
54 57
 
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/Component/Product/Model/ProductOptionValueInterface.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -29,6 +29,7 @@  discard block
 block discarded – undo
29 29
 
30 30
     /**
31 31
      * @param ProductOptionInterface $option
32
+     * @return void
32 33
      */
33 34
     public function setOption(?ProductOptionInterface $option): void;
34 35
 
@@ -39,6 +40,7 @@  discard block
 block discarded – undo
39 40
 
40 41
     /**
41 42
      * @param string|null $value
43
+     * @return void
42 44
      */
43 45
     public function setValue(?string $value): void;
44 46
 
Please login to merge, or discard this patch.
Sylius/Component/Product/Model/ProductOptionValueTranslationInterface.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|null $value
30
+     * @return void
30 31
      */
31 32
     public function setValue(?string $value): void;
32 33
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductTranslationInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@  discard block
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param string|null $name
31
+     * @return void
31 32
      */
32 33
     public function setName(?string $name): void;
33 34
 
@@ -38,6 +39,7 @@  discard block
 block discarded – undo
38 39
 
39 40
     /**
40 41
      * @param string|null $description
42
+     * @return void
41 43
      */
42 44
     public function setDescription(?string $description): void;
43 45
 
@@ -48,6 +50,7 @@  discard block
 block discarded – undo
48 50
 
49 51
     /**
50 52
      * @param string|null $metaKeywords
53
+     * @return void
51 54
      */
52 55
     public function setMetaKeywords(?string $metaKeywords): void;
53 56
 
@@ -58,6 +61,7 @@  discard block
 block discarded – undo
58 61
 
59 62
     /**
60 63
      * @param string|null $metaDescription
64
+     * @return void
61 65
      */
62 66
     public function setMetaDescription(?string $metaDescription): void;
63 67
 }
Please login to merge, or discard this patch.
src/Sylius/Component/Product/Model/ProductVariantInterface.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -35,6 +35,7 @@  discard block
 block discarded – undo
35 35
 
36 36
     /**
37 37
      * @param string|null $name
38
+     * @return void
38 39
      */
39 40
     public function setName(?string $name): void;
40 41
 
@@ -50,11 +51,13 @@  discard block
 block discarded – undo
50 51
 
51 52
     /**
52 53
      * @param ProductOptionValueInterface $optionValue
54
+     * @return void
53 55
      */
54 56
     public function addOptionValue(ProductOptionValueInterface $optionValue): void;
55 57
 
56 58
     /**
57 59
      * @param ProductOptionValueInterface $optionValue
60
+     * @return void
58 61
      */
59 62
     public function removeOptionValue(ProductOptionValueInterface $optionValue): void;
60 63
 
@@ -72,6 +75,7 @@  discard block
 block discarded – undo
72 75
 
73 76
     /**
74 77
      * @param ProductInterface|null $product
78
+     * @return void
75 79
      */
76 80
     public function setProduct(?ProductInterface $product): void;
77 81
 
@@ -82,6 +86,7 @@  discard block
 block discarded – undo
82 86
 
83 87
     /**
84 88
      * @param int|null $position
89
+     * @return void
85 90
      */
86 91
     public function setPosition(?int $position): void;
87 92
 }
Please login to merge, or discard this patch.