Passed
Push — master ( 8261fc...d6c380 )
by Aimeos
05:31
created
lib/mwlib/src/MW/Config/Decorator/Memory.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -103,8 +103,7 @@
 block discarded – undo
103 103
 		{
104 104
 			$this->cache[$name] = $value;
105 105
 			unset( $this->negCache[$name] );
106
-		}
107
-		else
106
+		} else
108 107
 		{
109 108
 			$this->negCache[$name] = true;
110 109
 		}
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Index/Manager/Supplier/Standard.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -463,7 +463,7 @@
 block discarded – undo
463 463
 
464 464
 						try {
465 465
 							$stmt->execute()->finish();
466
-						} catch( \Aimeos\MW\DB\Exception $e ) { ; } // Ignore duplicates
466
+						} catch( \Aimeos\MW\DB\Exception $e ) {; } // Ignore duplicates
467 467
 					}
468 468
 				}
469 469
 			}
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -497,9 +497,13 @@
 block discarded – undo
497 497
 						$stmt->bind( 7, $date ); //mtime
498 498
 						$stmt->bind( 8, $siteid );
499 499
 
500
-						try {
500
+						try
501
+						{
501 502
 							$stmt->execute()->finish();
502
-						} catch( \Aimeos\MW\DB\Exception $e ) { ; } // Ignore duplicates
503
+						}
504
+						catch( \Aimeos\MW\DB\Exception $e )
505
+						{
506
+; } // Ignore duplicates
503 507
 					}
504 508
 				}
505 509
 			}
Please login to merge, or discard this patch.
lib/mshoplib/setup/default/MShopAddCatalogDataDefault.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,9 +46,12 @@
 block discarded – undo
46 46
 
47 47
 		foreach( $data as $entry )
48 48
 		{
49
-			try {
49
+			try
50
+			{
50 51
 				$manager->find( $entry['catalog.code'] );
51
-			} catch( \Aimeos\MW\Exception $e ) {
52
+			}
53
+			catch( \Aimeos\MW\Exception $e )
54
+			{
52 55
 				$manager->insert( $manager->create()->fromArray( $entry ) );
53 56
 			}
54 57
 		}
Please login to merge, or discard this patch.
lib/mwlib/src/MW/Media/Image/Standard.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -196,8 +196,7 @@  discard block
 block discarded – undo
196 196
 			$ratio = ( $w < $h ? $width / $w : $height / $h );
197 197
 			$newHeight = (int) $h * $ratio;
198 198
 			$newWidth = (int) $w * $ratio;
199
-		}
200
-		else
199
+		} else
201 200
 		{
202 201
 			list( $newWidth, $newHeight ) = $this->getSizeFitted( $w, $h, $width, $height );
203 202
 
@@ -261,8 +260,7 @@  discard block
 block discarded – undo
261 260
 
262 261
 			imagedestroy( $result );
263 262
 			$newMedia->image = $newImage;
264
-		}
265
-		else
263
+		} else
266 264
 		{
267 265
 			$newMedia->image = $result;
268 266
 		}
Please login to merge, or discard this patch.
lib/mshoplib/setup/MShopAddAttributeData.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 				$item = $item->setId( null )->fromArray( $dataset );
51 51
 				$manager->save( $item );
52 52
 			}
53
-			catch( \Exception $e ) { ; } // if attribute was already available
53
+			catch( \Exception $e ) {; } // if attribute was already available
54 54
 		}
55 55
 	}
56 56
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,9 @@
 block discarded – undo
50 50
 				$item = $item->setId( null )->fromArray( $dataset );
51 51
 				$manager->save( $item );
52 52
 			}
53
-			catch( \Exception $e ) { ; } // if attribute was already available
53
+			catch( \Exception $e )
54
+			{
55
+; } // if attribute was already available
54 56
 		}
55 57
 	}
56 58
 }
Please login to merge, or discard this patch.
lib/mshoplib/setup/MShopAddPluginData.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,9 +85,13 @@
 block discarded – undo
85 85
 				$item->setPosition( $dataset['position'] );
86 86
 			}
87 87
 
88
-			try {
88
+			try
89
+			{
89 90
 				$pluginManager->save( $item );
90
-			} catch( \Exception $e ) {; } // if plugin configuration was already available
91
+			}
92
+			catch( \Exception $e )
93
+			{
94
+; } // if plugin configuration was already available
91 95
 		}
92 96
 	}
93 97
 }
Please login to merge, or discard this patch.
up.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -46,21 +46,18 @@
 block discarded – undo
46 46
 				{
47 47
 					$options[$name] = (array) $options[$name];
48 48
 					$options[$name][] = substr( $option, $pos + 1 );
49
-				}
50
-				else
49
+				} else
51 50
 				{
52 51
 					$options[$name] = substr( $option, $pos + 1 );
53 52
 				}
54 53
 
55 54
 				unset( $params[$key] );
56
-			}
57
-			else
55
+			} else
58 56
 			{
59 57
 				printf( "Invalid option \"%1\$s\"\n", $option );
60 58
 				usage();
61 59
 			}
62
-		}
63
-		elseif( $option[0] === '-' )
60
+		} elseif( $option[0] === '-' )
64 61
 		{
65 62
 			$options[$option[1]] = substr( $option, 1 );
66 63
 			unset( $params[$key] );
Please login to merge, or discard this patch.
lib/mshoplib/setup/unittest/CustomerAddTestData.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -138,9 +138,12 @@
 block discarded – undo
138 138
 		{
139 139
 			foreach( $data['customer/group'] as $entry )
140 140
 			{
141
-				try {
141
+				try
142
+				{
142 143
 					$groupManager->save( $groupManager->find( $entry['customer.group.code'] )->fromArray( $entry ) );
143
-				} catch( \Exception $e ) {
144
+				}
145
+				catch( \Exception $e )
146
+				{
144 147
 					$groupManager->save( $groupManager->create()->fromArray( $entry ), false );
145 148
 				}
146 149
 			}
Please login to merge, or discard this patch.
controller/common/src/Controller/Common/Order/Standard.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -344,7 +344,8 @@
 block discarded – undo
344 344
 				{
345 345
 					$stockManager->decrease( [$item->getProductId() => -1 * $how * $item->getQuantity()], $item->getStockType() );
346 346
 
347
-					switch( $item->getType() ) {
347
+					switch( $item->getType() )
348
+					{
348 349
 						case 'default':
349 350
 							$this->updateStockBundle( $item->getParentProductId(), $item->getStockType() ); break;
350 351
 						case 'select':
Please login to merge, or discard this patch.