Completed
Pull Request — master (#4)
by
unknown
07:59
created
controller/jobs/src/Controller/Jobs/Product/Export/Standard.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -275,7 +275,7 @@
 block discarded – undo
275 275
 	 *
276 276
 	 * @param \Aimeos\MW\Container\Iface $container Container object
277 277
 	 * @param boolean $default True to filter exported products by default criteria
278
-	 * @return array List of content (file) names
278
+	 * @return string[] List of content (file) names
279 279
 	 */
280 280
 	protected function export( \Aimeos\MW\Container\Iface $container, $default = true )
281 281
 	{
Please login to merge, or discard this patch.
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -290,14 +290,14 @@
 block discarded – undo
290 290
 
291 291
 		$indexManager =  \Aimeos\MShop\Index\Manager\Factory::createManager($this->getContext());
292 292
 
293
-        	$search = $indexManager->createSearch($default);
294
-        	$search->setSlice( 0, $maxQuery );
295
-       		$search->setConditions(
296
-          		$search->compare('!=', 'index.catalog.id', null)
297
-        	);
298
-      		$search->setSortations(
299
-           		[$search->sort( '+', 'product.id' )]
300
-       		);
293
+			$search = $indexManager->createSearch($default);
294
+			$search->setSlice( 0, $maxQuery );
295
+	   		$search->setConditions(
296
+		  		$search->compare('!=', 'index.catalog.id', null)
297
+			);
298
+	  		$search->setSortations(
299
+		   		[$search->sort( '+', 'product.id' )]
300
+	   		);
301 301
 
302 302
 		$content = $this->createContent( $container, $filenum );
303 303
 		$names[] = basename($content->getResource());
Please login to merge, or discard this patch.