Completed
Push — master ( d6d4c4...f88602 )
by Aimeos
07:51
created
lib/mshoplib/src/MShop/Customer/Manager/Base.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
 		$search->setSlice( 0, 0x7fffffff );
124 124
 
125 125
 		foreach( $manager->searchItems( $search ) as $listid => $listItem ) {
126
-			$listMap[ $listItem->getRefId() ] = $listid;
126
+			$listMap[$listItem->getRefId()] = $listid;
127 127
 		}
128 128
 
129 129
 
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
 			$listItem->setTypeId( $typeId );
139 139
 			$listItem->setStatus( 1 );
140 140
 
141
-			$pos = count( $listMap ) ;
141
+			$pos = count( $listMap );
142 142
 
143 143
 			foreach( $item->getGroups() as $gid )
144 144
 			{
@@ -253,12 +253,12 @@  discard block
 block discarded – undo
253 253
 
254 254
 		if( ctype_alnum( $name ) === false )
255 255
 		{
256
-			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Common\\Item\\Helper\\Password\\' . $name : '<not a string>';
256
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Common\\Item\\Helper\\Password\\'.$name : '<not a string>';
257 257
 			throw new \Aimeos\MShop\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
258 258
 		}
259 259
 
260 260
 		$iface = '\\Aimeos\\MShop\\Common\\Item\\Helper\\Password\\Iface';
261
-		$classname = '\\Aimeos\\MShop\\Common\\Item\\Helper\\Password\\' . $name;
261
+		$classname = '\\Aimeos\\MShop\\Common\\Item\\Helper\\Password\\'.$name;
262 262
 
263 263
 		if( class_exists( $classname ) === false ) {
264 264
 			throw new \Aimeos\MShop\Exception( sprintf( 'Class "%1$s" not available', $classname ) );
Please login to merge, or discard this patch.