@@ -158,7 +158,7 @@ |
||
158 | 158 | |
159 | 159 | /** |
160 | 160 | * @param ProductAssociationInterface $productAssociation |
161 | - * @param string $productIds |
|
161 | + * @param string $productCodes |
|
162 | 162 | */ |
163 | 163 | private function setAssociatedProductsByProductCodes(ProductAssociationInterface $productAssociation, $productCodes) |
164 | 164 | { |
@@ -26,6 +26,7 @@ discard block |
||
26 | 26 | |
27 | 27 | /** |
28 | 28 | * @param string $type |
29 | + * @return void |
|
29 | 30 | */ |
30 | 31 | public function setType($type); |
31 | 32 | |
@@ -36,6 +37,7 @@ discard block |
||
36 | 37 | |
37 | 38 | /** |
38 | 39 | * @param \SplFileInfo $file |
40 | + * @return void |
|
39 | 41 | */ |
40 | 42 | public function setFile(\SplFileInfo $file); |
41 | 43 | |
@@ -51,6 +53,7 @@ discard block |
||
51 | 53 | |
52 | 54 | /** |
53 | 55 | * @param string $path |
56 | + * @return void |
|
54 | 57 | */ |
55 | 58 | public function setPath($path); |
56 | 59 | |
@@ -61,6 +64,7 @@ discard block |
||
61 | 64 | |
62 | 65 | /** |
63 | 66 | * @param ImageAwareInterface|null $owner |
67 | + * @return void |
|
64 | 68 | */ |
65 | 69 | public function setOwner(ImageAwareInterface $owner = null); |
66 | 70 | } |
@@ -40,6 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | /** |
42 | 42 | * @param string $name |
43 | + * @return void |
|
43 | 44 | */ |
44 | 45 | public function setName($name); |
45 | 46 | |
@@ -50,6 +51,7 @@ discard block |
||
50 | 51 | |
51 | 52 | /** |
52 | 53 | * @param string $description |
54 | + * @return void |
|
53 | 55 | */ |
54 | 56 | public function setDescription($description); |
55 | 57 | |
@@ -60,6 +62,7 @@ discard block |
||
60 | 62 | |
61 | 63 | /** |
62 | 64 | * @param string $metaKeywords |
65 | + * @return void |
|
63 | 66 | */ |
64 | 67 | public function setMetaKeywords($metaKeywords); |
65 | 68 | |
@@ -70,6 +73,7 @@ discard block |
||
70 | 73 | |
71 | 74 | /** |
72 | 75 | * @param string $metaDescription |
76 | + * @return void |
|
73 | 77 | */ |
74 | 78 | public function setMetaDescription($metaDescription); |
75 | 79 | |
@@ -85,11 +89,13 @@ discard block |
||
85 | 89 | |
86 | 90 | /** |
87 | 91 | * @param ProductVariantInterface $variant |
92 | + * @return void |
|
88 | 93 | */ |
89 | 94 | public function addVariant(ProductVariantInterface $variant); |
90 | 95 | |
91 | 96 | /** |
92 | 97 | * @param ProductVariantInterface $variant |
98 | + * @return void |
|
93 | 99 | */ |
94 | 100 | public function removeVariant(ProductVariantInterface $variant); |
95 | 101 | |
@@ -112,11 +118,13 @@ discard block |
||
112 | 118 | |
113 | 119 | /** |
114 | 120 | * @param ProductOptionInterface $option |
121 | + * @return void |
|
115 | 122 | */ |
116 | 123 | public function addOption(ProductOptionInterface $option); |
117 | 124 | |
118 | 125 | /** |
119 | 126 | * @param ProductOptionInterface $option |
127 | + * @return void |
|
120 | 128 | */ |
121 | 129 | public function removeOption(ProductOptionInterface $option); |
122 | 130 | |
@@ -129,6 +137,7 @@ discard block |
||
129 | 137 | |
130 | 138 | /** |
131 | 139 | * @param ProductAssociationInterface $association |
140 | + * @return void |
|
132 | 141 | */ |
133 | 142 | public function addAssociation(ProductAssociationInterface $association); |
134 | 143 | |
@@ -139,6 +148,7 @@ discard block |
||
139 | 148 | |
140 | 149 | /** |
141 | 150 | * @param ProductAssociationInterface $association |
151 | + * @return void |
|
142 | 152 | */ |
143 | 153 | public function removeAssociation(ProductAssociationInterface $association); |
144 | 154 |
@@ -82,6 +82,7 @@ |
||
82 | 82 | |
83 | 83 | /** |
84 | 84 | * {@inheritdoc} |
85 | + * @param string $url |
|
85 | 86 | */ |
86 | 87 | public function redirect(RequestConfiguration $configuration, $url, $status = 302) |
87 | 88 | { |
@@ -33,12 +33,13 @@ |
||
33 | 33 | |
34 | 34 | /** |
35 | 35 | * @param string $name |
36 | - * @param mixed $value |
|
36 | + * @param string $value |
|
37 | 37 | */ |
38 | 38 | public function set($name, $value); |
39 | 39 | |
40 | 40 | /** |
41 | 41 | * @param string $name |
42 | + * @return void |
|
42 | 43 | */ |
43 | 44 | public function remove($name); |
44 | 45 |
@@ -19,6 +19,7 @@ |
||
19 | 19 | /** |
20 | 20 | * @param array $data |
21 | 21 | * @param array $recipients |
22 | + * @return void |
|
22 | 23 | */ |
23 | 24 | public function sendContactRequest(array $data, array $recipients); |
24 | 25 | } |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param OrderInterface $order |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function sendConfirmationEmail(OrderInterface $order); |
25 | 26 | } |
@@ -20,6 +20,7 @@ |
||
20 | 20 | { |
21 | 21 | /** |
22 | 22 | * @param ShipmentInterface $shipment |
23 | + * @return void |
|
23 | 24 | */ |
24 | 25 | public function sendConfirmationEmail(ShipmentInterface $shipment); |
25 | 26 | } |
@@ -23,9 +23,6 @@ |
||
23 | 23 | final class OrderProductEligibilityValidator extends ConstraintValidator |
24 | 24 | { |
25 | 25 | /** |
26 | - * @param OrderInterface $value |
|
27 | - * |
|
28 | - * {@inheritdoc} |
|
29 | 26 | */ |
30 | 27 | public function validate($order, Constraint $constraint) |
31 | 28 | { |