Passed
Push — master ( 154b9f...ee7f20 )
by Aimeos
06:15
created
src/MShop/Index/Manager/Catalog/Standard.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -472,7 +472,7 @@
 block discarded – undo
472 472
 
473 473
 					try {
474 474
 						$stmt->execute()->finish();
475
-					} catch( \Aimeos\Base\DB\Exception $e ) { ; } // Ignore duplicates
475
+					} catch( \Aimeos\Base\DB\Exception $e ) {; } // Ignore duplicates
476 476
 				}
477 477
 			}
478 478
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -470,9 +470,13 @@
 block discarded – undo
470 470
 					$stmt->bind( 5, $date ); //mtime
471 471
 					$stmt->bind( 6, $siteid );
472 472
 
473
-					try {
473
+					try
474
+					{
474 475
 						$stmt->execute()->finish();
475
-					} catch( \Aimeos\Base\DB\Exception $e ) { ; } // Ignore duplicates
476
+					}
477
+					catch( \Aimeos\Base\DB\Exception $e )
478
+					{
479
+; } // Ignore duplicates
476 480
 				}
477 481
 			}
478 482
 
Please login to merge, or discard this patch.
src/MShop/Index/Manager/Text/Standard.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -830,7 +830,7 @@
 block discarded – undo
830 830
 
831 831
 		try {
832 832
 			$stmt->execute()->finish();
833
-		} catch( \Aimeos\Base\DB\Exception $e ) { ; } // Ignore duplicates
833
+		} catch( \Aimeos\Base\DB\Exception $e ) {; } // Ignore duplicates
834 834
 	}
835 835
 
836 836
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -828,9 +828,13 @@
 block discarded – undo
828 828
 		$stmt->bind( 6, $date ); //mtime
829 829
 		$stmt->bind( 7, $siteid );
830 830
 
831
-		try {
831
+		try
832
+		{
832 833
 			$stmt->execute()->finish();
833
-		} catch( \Aimeos\Base\DB\Exception $e ) { ; } // Ignore duplicates
834
+		}
835
+		catch( \Aimeos\Base\DB\Exception $e )
836
+		{
837
+; } // Ignore duplicates
834 838
 	}
835 839
 
836 840
 
Please login to merge, or discard this patch.
src/MShop/Index/Manager/Price/Standard.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -706,7 +706,7 @@
 block discarded – undo
706 706
 
707 707
 			try {
708 708
 				$stmt->execute()->finish();
709
-			} catch( \Aimeos\Base\DB\Exception $e ) { ; } // Ignore duplicates
709
+			} catch( \Aimeos\Base\DB\Exception $e ) {; } // Ignore duplicates
710 710
 		}
711 711
 	}
712 712
 }
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -704,9 +704,13 @@
 block discarded – undo
704 704
 			$stmt->bind( 4, $date ); // mtime
705 705
 			$stmt->bind( 5, $siteid );
706 706
 
707
-			try {
707
+			try
708
+			{
708 709
 				$stmt->execute()->finish();
709
-			} catch( \Aimeos\Base\DB\Exception $e ) { ; } // Ignore duplicates
710
+			}
711
+			catch( \Aimeos\Base\DB\Exception $e )
712
+			{
713
+; } // Ignore duplicates
710 714
 		}
711 715
 	}
712 716
 }
Please login to merge, or discard this patch.
src/MShop/Stock/Manager/Nolimit.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -140,8 +140,7 @@
 block discarded – undo
140 140
 			foreach( $cond->getExpressions() as $expr ) {
141 141
 				$list = array_merge( $list, $this->getProductIds( $expr ) );
142 142
 			}
143
-		}
144
-		elseif( $cond instanceof \Aimeos\Base\Criteria\Expression\Compare\Iface )
143
+		} elseif( $cond instanceof \Aimeos\Base\Criteria\Expression\Compare\Iface )
145 144
 		{
146 145
 			if( $cond->getName() === 'stock.productid' && $cond->getOperator() === '==' ) {
147 146
 				$list = array_merge( $list, (array) $cond->getValue() );
Please login to merge, or discard this patch.