Passed
Push — master ( 67347e...1e0a00 )
by Aimeos
04:36
created
src/MShop/Media/Manager/Preview.php 1 patch
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.
setup/default/DemoAddCatalogData.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
 			$this->removeRefItems( map( $item ), $domains );
129 129
 			$manager->save( $item );
130 130
 		}
131
-		catch( \Exception $e ) { ; } // If no root node was already inserted into the database
131
+		catch( \Exception $e ) {; } // If no root node was already inserted into the database
132 132
 
133 133
 		$filter = $manager->filter()
134 134
 			->add( 'catalog.code', '=~', 'demo-' )
Please login to merge, or discard this patch.
Braces   +8 added lines, -3 removed lines patch added patch discarded remove patch
@@ -77,9 +77,12 @@  discard block
 block discarded – undo
77 77
 		$context = $this->context();
78 78
 		$manager = \Aimeos\MShop::create( $context, 'catalog' );
79 79
 
80
-		try {
80
+		try
81
+		{
81 82
 			$item = $manager->getTree( null, ['media', 'text'], \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE );
82
-		} catch( \Exception $e ) {
83
+		}
84
+		catch( \Exception $e )
85
+		{
83 86
 			$item = $manager->insert( $manager->create()->fromArray( $data ) );
84 87
 		}
85 88
 
@@ -128,7 +131,9 @@  discard block
 block discarded – undo
128 131
 			$this->removeRefItems( map( $item ), $domains );
129 132
 			$manager->save( $item );
130 133
 		}
131
-		catch( \Exception $e ) { ; } // If no root node was already inserted into the database
134
+		catch( \Exception $e )
135
+		{
136
+; } // If no root node was already inserted into the database
132 137
 
133 138
 		$filter = $manager->filter()
134 139
 			->add( 'catalog.code', '=~', 'demo-' )
Please login to merge, or discard this patch.
setup/MShopAddDataAbstract.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@
 block discarded – undo
87 87
 
88 88
 			try {
89 89
 				$refItem = $refManager->find( $refItem->getCode(), [], $item->getResourceType(), $refItem->getType() );
90
-			} catch( \Exception $e ) { ; } // if not found, use the new item
90
+			} catch( \Exception $e ) {; } // if not found, use the new item
91 91
 
92 92
 			$refItem = $this->addRefItems( $refItem, $data );
93 93
 			$item->addListItem( 'attribute', $listItem, $refItem );
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,9 +85,13 @@
 block discarded – undo
85 85
 			$listItem = $manager->createListItem()->setPosition( $idx )->fromArray( $data );
86 86
 			$refItem = $refManager->create()->fromArray( $data );
87 87
 
88
-			try {
88
+			try
89
+			{
89 90
 				$refItem = $refManager->find( $refItem->getCode(), [], $item->getResourceType(), $refItem->getType() );
90
-			} catch( \Exception $e ) { ; } // if not found, use the new item
91
+			}
92
+			catch( \Exception $e )
93
+			{
94
+; } // if not found, use the new item
91 95
 
92 96
 			$refItem = $this->addRefItems( $refItem, $data );
93 97
 			$item->addListItem( 'attribute', $listItem, $refItem );
Please login to merge, or discard this patch.
src/MShop/Catalog/Manager/Standard.php 1 patch
Braces   +13 added lines, -10 removed lines patch added patch discarded remove patch
@@ -843,9 +843,12 @@  discard block
 block discarded – undo
843 843
 
844 844
 		foreach( $sitePath as $siteId )
845 845
 		{
846
-			try {
846
+			try
847
+			{
847 848
 				$path = $this->createTreeManager( $siteId )->getPath( $id );
848
-			} catch( \Exception $e ) {
849
+			}
850
+			catch( \Exception $e )
851
+			{
849 852
 				continue;
850 853
 			}
851 854
 
@@ -889,9 +892,12 @@  discard block
 block discarded – undo
889 892
 
890 893
 		foreach( $sitePath as $siteId )
891 894
 		{
892
-			try {
895
+			try
896
+			{
893 897
 				$node = $this->createTreeManager( $siteId )->getNode( $id, $level, $criteria );
894
-			} catch( \Aimeos\MW\Tree\Exception $e ) {
898
+			}
899
+			catch( \Aimeos\MW\Tree\Exception $e )
900
+			{
895 901
 				continue;
896 902
 			}
897 903
 
@@ -973,8 +979,7 @@  discard block
 block discarded – undo
973 979
 				if( $child->getParentId() !== $item->getId() ) {
974 980
 					$this->move( $child->getId(), $item->getParentId(), $child->getParentId() );
975 981
 				}
976
-			}
977
-			else
982
+			} else
978 983
 			{
979 984
 				$this->insert( $child, $item->getId() );
980 985
 			}
@@ -1118,8 +1123,7 @@  discard block
 block discarded – undo
1118 1123
 			 * @see mshop/catalog/manager/insert-usage/ansi
1119 1124
 			 */
1120 1125
 			$path = 'mshop/catalog/manager/update-usage';
1121
-		}
1122
-		else
1126
+		} else
1123 1127
 		{
1124 1128
 			/** mshop/catalog/manager/insert-usage/mysql
1125 1129
 			 * Updates the config, editor, ctime and mtime value of an inserted record
@@ -1183,8 +1187,7 @@  discard block
 block discarded – undo
1183 1187
 		{
1184 1188
 			$stmt->bind( $idx++, $siteid );
1185 1189
 			$stmt->bind( $idx++, $id, \Aimeos\Base\DB\Statement\Base::PARAM_INT );
1186
-		}
1187
-		else
1190
+		} else
1188 1191
 		{
1189 1192
 			$stmt->bind( $idx++, $context->datetime() ); // ctime
1190 1193
 			$stmt->bind( $idx++, $siteid );
Please login to merge, or discard this patch.
src/MW/Jsb2/Standard.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,8 +95,7 @@
 block discarded – undo
95 95
 				if( !in_array( $package->name, $filter ) ) {
96 96
 					$packageContainer[$package->file][] = $package;
97 97
 				}
98
-			}
99
-			else
98
+			} else
100 99
 			{
101 100
 				$packageContainer[$package->file] = [$package];
102 101
 			}
Please login to merge, or discard this patch.
src/MShop/Text/Manager/Lists/Standard.php 1 patch
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -33,21 +33,21 @@
 block discarded – undo
33 33
 	 */
34 34
 
35 35
 		/** mshop/text/manager/lists/submanagers
36
-	 * List of manager names that can be instantiated by the text list manager
37
-	 *
38
-	 * Managers provide a generic interface to the underlying storage.
39
-	 * Each manager has or can have sub-managers caring about particular
40
-	 * aspects. Each of these sub-managers can be instantiated by its
41
-	 * parent manager using the getSubManager() method.
42
-	 *
43
-	 * The search keys from sub-managers can be normally used in the
44
-	 * manager as well. It allows you to search for items of the manager
45
-	 * using the search keys of the sub-managers to further limit the
46
-	 * retrieved list of items.
47
-	 *
48
-	 * @param array List of sub-manager names
49
-	 * @since 2015.10
50
-	 */
36
+		 * List of manager names that can be instantiated by the text list manager
37
+		 *
38
+		 * Managers provide a generic interface to the underlying storage.
39
+		 * Each manager has or can have sub-managers caring about particular
40
+		 * aspects. Each of these sub-managers can be instantiated by its
41
+		 * parent manager using the getSubManager() method.
42
+		 *
43
+		 * The search keys from sub-managers can be normally used in the
44
+		 * manager as well. It allows you to search for items of the manager
45
+		 * using the search keys of the sub-managers to further limit the
46
+		 * retrieved list of items.
47
+		 *
48
+		 * @param array List of sub-manager names
49
+		 * @since 2015.10
50
+		 */
51 51
 
52 52
 	/** mshop/text/manager/lists/name
53 53
 	 * Class name of the used text list manager implementation
Please login to merge, or discard this patch.