@@ -53,7 +53,7 @@ discard block |
||
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 |
||
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 |
||
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 | */ |
@@ -71,7 +71,7 @@ discard block |
||
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 |
||
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 | */ |
@@ -55,7 +55,7 @@ discard block |
||
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 |
||
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 | */ |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | * @param string $operator Comparison operator, e.g. "==", "!=", "<", "<=", ">=", ">", "=~", "~=" |
69 | 69 | * @param string $key Search key defined by the subscription manager, e.g. "subscription.status" |
70 | 70 | * @param array|string $value Value or list of values to compare to |
71 | - * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
|
71 | + * @return Base Subscription controller for fluent interface |
|
72 | 72 | * @since 2019.04 |
73 | 73 | */ |
74 | 74 | public function compare( $operator, $key, $value ) |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * Parses the given array and adds the conditions to the list of conditions |
96 | 96 | * |
97 | 97 | * @param array $conditions List of conditions, e.g. ['>' => ['subscription.interval' => 'P0Y1M0W0D']] |
98 | - * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
|
98 | + * @return Base Subscription controller for fluent interface |
|
99 | 99 | * @since 2019.04 |
100 | 100 | */ |
101 | 101 | public function parse( array $conditions ) |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * |
124 | 124 | * @param integer $start Start value of the first subscription item in the list |
125 | 125 | * @param integer $limit Number of returned subscription items |
126 | - * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
|
126 | + * @return Base Subscription controller for fluent interface |
|
127 | 127 | * @since 2019.04 |
128 | 128 | */ |
129 | 129 | public function slice( $start, $limit ) |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | * Sets the sorting of the result list |
138 | 138 | * |
139 | 139 | * @param string|null $key Sorting key of the result list like "interval", null for no sorting |
140 | - * @return \Aimeos\Controller\Frontend\Subscription\Iface Subscription controller for fluent interface |
|
140 | + * @return Base Subscription controller for fluent interface |
|
141 | 141 | * @since 2019.04 |
142 | 142 | */ |
143 | 143 | public function sort( $key = null ) |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * |
58 | 58 | * @param string $operator Comparison operator, e.g. "==", "!=", "<", "<=", ">=", ">", "=~", "~=" |
59 | 59 | * @param string $key Search key defined by the locale manager, e.g. "locale.status" |
60 | - * @param array|string $value Value or list of values to compare to |
|
60 | + * @param integer $value Value or list of values to compare to |
|
61 | 61 | * @return \Aimeos\Controller\Frontend\Locale\Iface Locale controller for fluent interface |
62 | 62 | * @since 2019.04 |
63 | 63 | */ |
@@ -99,6 +99,7 @@ discard block |
||
99 | 99 | * Returns the locales filtered by the previously assigned conditions |
100 | 100 | * |
101 | 101 | * @param integer &$total Parameter where the total number of found locales will be stored in |
102 | + * @param integer $total |
|
102 | 103 | * @return \Aimeos\MShop\Locale\Item\Iface[] Ordered list of locale items |
103 | 104 | * @since 2019.04 |
104 | 105 | */ |