Completed
Push — master ( f97bb5...a4e8a9 )
by Aimeos
02:10
created
controller/frontend/src/Controller/Frontend/Catalog/Standard.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -227,6 +227,7 @@
 block discarded – undo
227 227
 	 * @param \Aimeos\MW\Criteria\Iface $filter Critera object which contains the filter conditions
228 228
 	 * @param string[] $domains Domain names of items that are associated with the products and that should be fetched too
229 229
 	 * @param integer &$total Parameter where the total number of found products will be stored in
230
+	 * @param integer $total
230 231
 	 * @return array Ordered list of product items implementing \Aimeos\MShop\Product\Item\Iface
231 232
 	 * @since 2015.08
232 233
 	 * @deprecated Use method in index controller instead
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
@@ -268,6 +268,7 @@  discard block
 block discarded – undo
268 268
 	 * @param \Aimeos\MW\Criteria\Iface $filter Critera object which contains the filter conditions
269 269
 	 * @param string[] $domains Domain names of items that are associated with the products and that should be fetched too
270 270
 	 * @param integer &$total Parameter where the total number of found products will be stored in
271
+	 * @param integer $total
271 272
 	 * @return array Ordered list of product items implementing \Aimeos\MShop\Product\Item\Iface
272 273
 	 * @since 2017.03
273 274
 	 */
@@ -293,7 +294,7 @@  discard block
 block discarded – undo
293 294
 	 * Returns the list of catalog IDs for the given catalog tree
294 295
 	 *
295 296
 	 * @param \Aimeos\MShop\Catalog\Item\Iface $item Catalog item with children
296
-	 * @return array List of catalog IDs
297
+	 * @return integer[] List of catalog IDs
297 298
 	 */
298 299
 	protected function getCatalogIdsFromTree( \Aimeos\MShop\Catalog\Item\Iface $item )
299 300
 	{
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Basket/Decorator/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -212,7 +212,7 @@
 block discarded – undo
212 212
 	/**
213 213
 	 * Returns the frontend controller
214 214
 	 *
215
-	 * @return \Aimeos\Controller\Frontend\Basket\Iface Frontend controller object
215
+	 * @return \Aimeos\Controller\Frontend\Iface Frontend controller object
216 216
 	 */
217 217
 	protected function getController()
218 218
 	{
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Catalog/Decorator/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -278,7 +278,7 @@
 block discarded – undo
278 278
 	/**
279 279
 	 * Returns the frontend controller
280 280
 	 *
281
-	 * @return \Aimeos\Controller\Frontend\Catalog\Iface Frontend controller object
281
+	 * @return \Aimeos\Controller\Frontend\Iface Frontend controller object
282 282
 	 */
283 283
 	protected function getController()
284 284
 	{
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Order/Decorator/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -152,7 +152,7 @@
 block discarded – undo
152 152
 	/**
153 153
 	 * Returns the frontend controller
154 154
 	 *
155
-	 * @return \Aimeos\Controller\Frontend\Order\Iface Frontend controller object
155
+	 * @return \Aimeos\Controller\Frontend\Iface Frontend controller object
156 156
 	 */
157 157
 	protected function getController()
158 158
 	{
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Product/Decorator/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
 	/**
192 192
 	 * Returns the frontend controller
193 193
 	 *
194
-	 * @return \Aimeos\Controller\Frontend\Product\Iface Frontend controller object
194
+	 * @return \Aimeos\Controller\Frontend\Iface Frontend controller object
195 195
 	 */
196 196
 	protected function getController()
197 197
 	{
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Service/Decorator/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
 	/**
129 129
 	 * Returns the frontend controller
130 130
 	 *
131
-	 * @return \Aimeos\Controller\Frontend\Service\Iface Frontend controller object
131
+	 * @return \Aimeos\Controller\Frontend\Iface Frontend controller object
132 132
 	 */
133 133
 	protected function getController()
134 134
 	{
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Stock/Decorator/Base.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,7 +103,6 @@  discard block
 block discarded – undo
103 103
 	 * Returns the stock item for the given stock ID
104 104
 	 *
105 105
 	 * @param string $id Unique stock ID
106
-	 * @param string[] $domains Domain names of items that are associated with the stocks and that should be fetched too
107 106
 	 * @return \Aimeos\MShop\Stock\Item\Iface Stock item including the referenced domains items
108 107
 	 * @since 2017.03
109 108
 	 */
@@ -141,7 +140,7 @@  discard block
 block discarded – undo
141 140
 	/**
142 141
 	 * Returns the frontend controller
143 142
 	 *
144
-	 * @return \Aimeos\Controller\Frontend\Stock\Iface Frontend controller object
143
+	 * @return \Aimeos\Controller\Frontend\Iface Frontend controller object
145 144
 	 */
146 145
 	protected function getController()
147 146
 	{
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Stock/Iface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,6 @@
 block discarded – undo
54 54
 	 * Returns the stock item for the given stock ID
55 55
 	 *
56 56
 	 * @param string $id Unique stock ID
57
-	 * @param string[] $domains Domain names of items that are associated with the stocks and that should be fetched too
58 57
 	 * @return \Aimeos\MShop\Stock\Item\Iface Stock item including the referenced domains items
59 58
 	 * @since 2017.03
60 59
 	 */
Please login to merge, or discard this patch.