Completed
Push — master ( 921503...9109fd )
by Aimeos
02:03
created
controller/frontend/src/Controller/Frontend/Attribute/Standard.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 	 *
74 74
 	 * @param string $operator Comparison operator, e.g. "==", "!=", "<", "<=", ">=", ">", "=~", "~="
75 75
 	 * @param string $key Search key defined by the attribute manager, e.g. "attribute.status"
76
-	 * @param array|string $value Value or list of values to compare to
76
+	 * @param string $value Value or list of values to compare to
77 77
 	 * @return \Aimeos\Controller\Frontend\Attribute\Iface Attribute controller for fluent interface
78 78
 	 * @since 2019.04
79 79
 	 */
@@ -146,6 +146,7 @@  discard block
 block discarded – undo
146 146
 	 *
147 147
 	 * @param string[] $domains Domain names of items that are associated with the attributes and that should be fetched too
148 148
 	 * @param integer &$total Parameter where the total number of found attributes will be stored in
149
+	 * @param integer $total
149 150
 	 * @return \Aimeos\MShop\Attribute\Item\Iface[] Ordered list of attribute items
150 151
 	 * @since 2019.04
151 152
 	 */
@@ -212,7 +213,7 @@  discard block
 block discarded – undo
212 213
 	/**
213 214
 	 * Adds attribute types for filtering
214 215
 	 *
215
-	 * @param array|string $codes Attribute ID or list of IDs
216
+	 * @param string $codes Attribute ID or list of IDs
216 217
 	 * @return \Aimeos\Controller\Frontend\Attribute\Iface Attribute controller for fluent interface
217 218
 	 * @since 2019.04
218 219
 	 */
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Product/Standard.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 	 *
146 146
 	 * @param string $operator Comparison operator, e.g. "==", "!=", "<", "<=", ">=", ">", "=~", "~="
147 147
 	 * @param string $key Search key defined by the product manager, e.g. "product.status"
148
-	 * @param array|string $value Value or list of values to compare to
148
+	 * @param string $value Value or list of values to compare to
149 149
 	 * @return \Aimeos\Controller\Frontend\Product\Iface Product controller for fluent interface
150 150
 	 * @since 2019.04
151 151
 	 */
@@ -249,6 +249,7 @@  discard block
 block discarded – undo
249 249
 	 *
250 250
 	 * @param string[] $domains Domain names of items that are associated with the products and that should be fetched too
251 251
 	 * @param integer &$total Parameter where the total number of found products will be stored in
252
+	 * @param integer $total
252 253
 	 * @return \Aimeos\MShop\Product\Item\Iface[] Ordered list of product items
253 254
 	 * @since 2019.04
254 255
 	 */
Please login to merge, or discard this patch.
frontend/tests/Controller/Frontend/Attribute/Decorator/BaseTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -176,6 +176,9 @@
 block discarded – undo
176 176
 	}
177 177
 
178 178
 
179
+	/**
180
+	 * @param string $name
181
+	 */
179 182
 	protected function access( $name )
180 183
 	{
181 184
 		$class = new \ReflectionClass( \Aimeos\Controller\Frontend\Attribute\Decorator\Base::class );
Please login to merge, or discard this patch.