Completed
Push — master ( 9109fd...709bda )
by Aimeos
02:33
created
controller/frontend/src/Controller/Frontend/Stock/Standard.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	/**
54 54
 	 * Adds the SKUs of the products for filtering
55 55
 	 *
56
-	 * @param array|string $codes Codes of the products
56
+	 * @param string[] $codes Codes of the products
57 57
 	 * @return \Aimeos\Controller\Frontend\Stock\Iface Stock controller for fluent interface
58 58
 	 * @since 2019.04
59 59
 	 */
@@ -128,6 +128,7 @@  discard block
 block discarded – undo
128 128
 	 * Returns the stock items filtered by the previously assigned conditions
129 129
 	 *
130 130
 	 * @param integer &$total Parameter where the total number of found stock items will be stored in
131
+	 * @param integer $total
131 132
 	 * @return \Aimeos\MShop\Stock\Item\Iface[] Ordered list of stock items
132 133
 	 * @since 2019.04
133 134
 	 */
@@ -192,7 +193,7 @@  discard block
 block discarded – undo
192 193
 	/**
193 194
 	 * Adds stock types for filtering
194 195
 	 *
195
-	 * @param array|string $types Stock type codes
196
+	 * @param string $types Stock type codes
196 197
 	 * @return \Aimeos\Controller\Frontend\Stock\Iface Stock controller for fluent interface
197 198
 	 * @since 2019.04
198 199
 	 */
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Subscription/Standard.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 	 *
72 72
 	 * @param string $operator Comparison operator, e.g. "==", "!=", "<", "<=", ">=", ">", "=~", "~="
73 73
 	 * @param string $key Search key defined by the subscription manager, e.g. "subscription.status"
74
-	 * @param array|string $value Value or list of values to compare to
74
+	 * @param string $value Value or list of values to compare to
75 75
 	 * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface
76 76
 	 * @since 2019.04
77 77
 	 */
@@ -169,6 +169,7 @@  discard block
 block discarded – undo
169 169
 	 * Returns the subscriptions filtered by the previously assigned conditions
170 170
 	 *
171 171
 	 * @param integer &$total Parameter where the total number of found subscriptions will be stored in
172
+	 * @param integer $total
172 173
 	 * @return \Aimeos\MShop\Subscription\Item\Iface[] Ordered list of subscription items
173 174
 	 * @since 2019.04
174 175
 	 */
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Supplier/Standard.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 	 *
56 56
 	 * @param string $operator Comparison operator, e.g. "==", "!=", "<", "<=", ">=", ">", "=~", "~="
57 57
 	 * @param string $key Search key defined by the supplier manager, e.g. "supplier.status"
58
-	 * @param array|string $value Value or list of values to compare to
58
+	 * @param string $value Value or list of values to compare to
59 59
 	 * @return \Aimeos\Controller\Frontend\Supplier\Iface Supplier controller for fluent interface
60 60
 	 * @since 2019.04
61 61
 	 */
@@ -113,6 +113,7 @@  discard block
 block discarded – undo
113 113
 	 *
114 114
 	 * @param string[] $domains Domain names of items that are associated with the suppliers and that should be fetched too
115 115
 	 * @param integer &$total Parameter where the total number of found suppliers will be stored in
116
+	 * @param integer $total
116 117
 	 * @return \Aimeos\MShop\Supplier\Item\Iface[] Ordered list of supplier items
117 118
 	 * @since 2019.04
118 119
 	 */
Please login to merge, or discard this patch.