Completed
Push — product/missing-methods ( 0cfbf7 )
by Kamil
25:41
created
src/Sylius/Component/Product/Model/ProductInterface.php 1 patch
Doc Comments   +12 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 $name
45
+     * @return void
45 46
      */
46 47
     public function setName($name);
47 48
 
@@ -52,6 +53,7 @@  discard block
 block discarded – undo
52 53
 
53 54
     /**
54 55
      * @param string $description
56
+     * @return void
55 57
      */
56 58
     public function setDescription($description);
57 59
 
@@ -62,6 +64,7 @@  discard block
 block discarded – undo
62 64
 
63 65
     /**
64 66
      * @param string $metaKeywords
67
+     * @return void
65 68
      */
66 69
     public function setMetaKeywords($metaKeywords);
67 70
 
@@ -72,6 +75,7 @@  discard block
 block discarded – undo
72 75
 
73 76
     /**
74 77
      * @param string $metaDescription
78
+     * @return void
75 79
      */
76 80
     public function setMetaDescription($metaDescription);
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);
92 97
 
93 98
     /**
94 99
      * @param ProductVariantInterface $variant
100
+     * @return void
95 101
      */
96 102
     public function removeVariant(ProductVariantInterface $variant);
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);
119 126
 
120 127
     /**
121 128
      * @param ProductOptionInterface $option
129
+     * @return void
122 130
      */
123 131
     public function removeOption(ProductOptionInterface $option);
124 132
 
@@ -141,6 +149,7 @@  discard block
 block discarded – undo
141 149
 
142 150
     /**
143 151
      * @param \DateTime|null $availableOn
152
+     * @return void
144 153
      */
145 154
     public function setAvailableOn(\DateTime $availableOn = null);
146 155
 
@@ -151,11 +160,13 @@  discard block
 block discarded – undo
151 160
 
152 161
     /**
153 162
      * @param \DateTime|null $availableUntil
163
+     * @return void
154 164
      */
155 165
     public function setAvailableUntil(\DateTime $availableUntil = null);
156 166
 
157 167
     /**
158 168
      * @param ProductAssociationInterface $association
169
+     * @return void
159 170
      */
160 171
     public function addAssociation(ProductAssociationInterface $association);
161 172
 
@@ -166,6 +177,7 @@  discard block
 block discarded – undo
166 177
 
167 178
     /**
168 179
      * @param ProductAssociationInterface $association
180
+     * @return void
169 181
      */
170 182
     public function removeAssociation(ProductAssociationInterface $association);
171 183
 
Please login to merge, or discard this patch.