Passed
Push — master ( e24b81...21ffe5 )
by Aimeos
04:21
created
src/MShop/Order/Item/Base.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -815,7 +815,7 @@  discard block
 block discarded – undo
815 815
 
816 816
 			foreach( $price->getTaxrates() as $name => $taxrate )
817 817
 			{
818
-				$price = (clone $price)->setTaxRate( $taxrate );
818
+				$price = ( clone $price )->setTaxRate( $taxrate );
819 819
 
820 820
 				if( isset( $taxes[$name][$taxrate] ) ) {
821 821
 					$taxes[$name][$taxrate]->addItem( $price, $product->getQuantity() );
@@ -833,7 +833,7 @@  discard block
 block discarded – undo
833 833
 
834 834
 				foreach( $price->getTaxrates() as $name => $taxrate )
835 835
 				{
836
-					$price = (clone $price)->setTaxRate( $taxrate );
836
+					$price = ( clone $price )->setTaxRate( $taxrate );
837 837
 
838 838
 					if( isset( $taxes[$name][$taxrate] ) ) {
839 839
 						$taxes[$name][$taxrate]->addItem( $price );
Please login to merge, or discard this patch.
src/MShop/Price/Manager/Base.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -102,16 +102,19 @@
 block discarded – undo
102 102
 
103 103
 			if( $siteId )
104 104
 			{
105
-				if( in_array( $siteId, $siteIds ) ) // if product is inherited, inherit price too
105
+				if( in_array( $siteId, $siteIds ) ) {
106
+					// if product is inherited, inherit price too
106 107
 				{
107 108
 					if( !in_array( $priceItem->getSiteId(), $siteIds ) ) {
108 109
 						continue;
109
-					}
110 110
 				}
111
-				elseif( $priceItem->getSiteId() !== $siteId ) // Use price from specific site originally passed as parameter
111
+					}
112
+				} elseif( $priceItem->getSiteId() !== $siteId ) {
113
+					// Use price from specific site originally passed as parameter
112 114
 				{
113 115
 					continue;
114 116
 				}
117
+				}
115 118
 			}
116 119
 
117 120
 			$qty = (string) $priceItem->getQuantity();
Please login to merge, or discard this patch.
setup/default/MShopAddCatalogDataDefault.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,9 +44,12 @@
 block discarded – undo
44 44
 
45 45
 		foreach( $data as $entry )
46 46
 		{
47
-			try {
47
+			try
48
+			{
48 49
 				$manager->find( $entry['catalog.code'] );
49
-			} catch( \Exception $e ) {
50
+			}
51
+			catch( \Exception $e )
52
+			{
50 53
 				$manager->insert( $manager->create()->fromArray( $entry ) );
51 54
 			}
52 55
 		}
Please login to merge, or discard this patch.
src/MShop/Index/Manager/Catalog/Standard.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -467,7 +467,7 @@
 block discarded – undo
467 467
 
468 468
 				try {
469 469
 					$stmt->execute()->finish();
470
-				} catch( \Aimeos\Base\DB\Exception $e ) { ; } // Ignore duplicates
470
+				} catch( \Aimeos\Base\DB\Exception $e ) {; } // Ignore duplicates
471 471
 			}
472 472
 		}
473 473
 
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -459,9 +459,13 @@
 block discarded – undo
459 459
 				$stmt->bind( 5, $context->datetime() ); //mtime
460 460
 				$stmt->bind( 6, $siteid );
461 461
 
462
-				try {
462
+				try
463
+				{
463 464
 					$stmt->execute()->finish();
464
-				} catch( \Aimeos\Base\DB\Exception $e ) { ; } // Ignore duplicates
465
+				}
466
+				catch( \Aimeos\Base\DB\Exception $e )
467
+				{
468
+; } // Ignore duplicates
465 469
 			}
466 470
 		}
467 471
 
Please login to merge, or discard this patch.
src/MShop/Plugin/Provider/Order/Autofill.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -296,8 +296,7 @@
 block discarded – undo
296 296
 							} );
297 297
 
298 298
 							$service->setId( null )->setAttributeItems( $attrItems->setId( null ) );
299
-						}
300
-						else
299
+						} else
301 300
 						{
302 301
 							unset( $map[$type][$key] );
303 302
 						}
Please login to merge, or discard this patch.
setup/unittest/Test.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 	{
16 16
 		$this->info( 'Creating test schema', 'vv' );
17 17
 
18
-        $this->db( 'db-test' )->table( 'mshop_test', function( \Aimeos\Upscheme\Schema\Table $table ) {
18
+		$this->db( 'db-test' )->table( 'mshop_test', function( \Aimeos\Upscheme\Schema\Table $table ) {
19 19
 
20 20
 			$table->engine = 'InnoDB';
21 21
 
Please login to merge, or discard this patch.
setup/unittest/GroupAddTestData.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,9 +55,12 @@
 block discarded – undo
55 55
 
56 56
 		foreach( $testdata['group'] as $entry )
57 57
 		{
58
-			try {
58
+			try
59
+			{
59 60
 				$manager->save( $manager->find( $entry['group.code'] )->fromArray( $entry ) );
60
-			} catch( \Exception $e ) {
61
+			}
62
+			catch( \Exception $e )
63
+			{
61 64
 				$manager->save( $manager->create()->fromArray( $entry ), false );
62 65
 			}
63 66
 		}
Please login to merge, or discard this patch.
src/MShop/Order/Manager/Update.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.
src/MShop/Media/Manager/Preview.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -137,8 +137,7 @@
 block discarded – undo
137 137
 				$msg = $this->context()->translate( 'mshop', 'Unable to open file "%1$s"' );
138 138
 				throw new \RuntimeException( sprintf( $msg, $file ) );
139 139
 			}
140
-		}
141
-		else
140
+		} else
142 141
 		{
143 142
 			$fh = $this->context()->fs( $fsname )->reads( $file );
144 143
 		}
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -56,9 +56,9 @@
 block discarded – undo
56 56
 			if( $this->call( 'filterPreviews', $image, $maxwidth, $maxheight, $force ) )
57 57
 			{
58 58
 				$file = match( $force ) {
59
-					0 => (clone $image)->scaleDown( $maxwidth, $maxheight ),
60
-					1 => (clone $image)->pad( $maxwidth, $maxheight, $bg, 'center' ),
61
-					2 => (clone $image)->cover( $maxwidth, $maxheight )
59
+					0 => ( clone $image )->scaleDown( $maxwidth, $maxheight ),
60
+					1 => ( clone $image )->pad( $maxwidth, $maxheight, $bg, 'center' ),
61
+					2 => ( clone $image )->cover( $maxwidth, $maxheight )
62 62
 				};
63 63
 
64 64
 				$list[$file->width()] = $file;
Please login to merge, or discard this patch.