@@ -31,6 +31,7 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | /** |
| 33 | 33 | * @param string $name |
| 34 | + * @return void |
|
| 34 | 35 | */ |
| 35 | 36 | public function setName($name); |
| 36 | 37 | |
@@ -41,6 +42,7 @@ discard block |
||
| 41 | 42 | |
| 42 | 43 | /** |
| 43 | 44 | * @param VariableInterface|null $object |
| 45 | + * @return void |
|
| 44 | 46 | */ |
| 45 | 47 | public function setObject(VariableInterface $object = null); |
| 46 | 48 | |
@@ -51,16 +53,19 @@ discard block |
||
| 51 | 53 | |
| 52 | 54 | /** |
| 53 | 55 | * @param Collection $options |
| 56 | + * @return void |
|
| 54 | 57 | */ |
| 55 | 58 | public function setOptions(Collection $options); |
| 56 | 59 | |
| 57 | 60 | /** |
| 58 | 61 | * @param OptionValueInterface $option |
| 62 | + * @return void |
|
| 59 | 63 | */ |
| 60 | 64 | public function addOption(OptionValueInterface $option); |
| 61 | 65 | |
| 62 | 66 | /** |
| 63 | 67 | * @param OptionValueInterface $option |
| 68 | + * @return void |
|
| 64 | 69 | */ |
| 65 | 70 | public function removeOption(OptionValueInterface $option); |
| 66 | 71 | |
@@ -27,6 +27,7 @@ |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param string $value |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setValue($value); |
| 32 | 33 | } |
@@ -20,24 +20,31 @@ |
||
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | 22 | * @param string $title |
| 23 | + * @return void |
|
| 23 | 24 | */ |
| 24 | 25 | public function titleReview($title); |
| 25 | 26 | |
| 26 | 27 | /** |
| 27 | 28 | * @param string $comment |
| 29 | + * @return void |
|
| 28 | 30 | */ |
| 29 | 31 | public function setComment($comment); |
| 30 | 32 | |
| 31 | 33 | /** |
| 32 | 34 | * @param string $author |
| 35 | + * @return void |
|
| 33 | 36 | */ |
| 34 | 37 | public function setAuthor($author); |
| 35 | 38 | |
| 36 | 39 | /** |
| 37 | 40 | * @param int $rate |
| 41 | + * @return void |
|
| 38 | 42 | */ |
| 39 | 43 | public function rateReview($rate); |
| 40 | 44 | |
| 45 | + /** |
|
| 46 | + * @return void |
|
| 47 | + */ |
|
| 41 | 48 | public function submitReview(); |
| 42 | 49 | |
| 43 | 50 | /** |
@@ -42,6 +42,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 166 | 177 | |
| 167 | 178 | /** |
| 168 | 179 | * @param ProductAssociationInterface $association |
| 180 | + * @return void |
|
| 169 | 181 | */ |
| 170 | 182 | public function removeAssociation(ProductAssociationInterface $association); |
| 171 | 183 | |
@@ -27,6 +27,7 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -27,6 +27,7 @@ |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param string $value |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setValue($value); |
| 32 | 33 | } |
@@ -27,6 +27,7 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -39,6 +39,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 | |
@@ -27,6 +27,7 @@ |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * @param string $value |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function setValue($value); |
| 32 | 33 | } |