Completed
Push — master ( 52c730...9eba1c )
by Aimeos
08:52
created
lib/mshoplib/src/MShop/Media/Manager/Factory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,12 +72,12 @@
 block discarded – undo
72 72
 
73 73
 		if( ctype_alnum( $name ) === false )
74 74
 		{
75
-			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Media\\Manager\\' . $name : '<not a string>';
75
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Media\\Manager\\'.$name : '<not a string>';
76 76
 			throw new \Aimeos\MShop\Media\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
77 77
 		}
78 78
 
79 79
 		$iface = '\\Aimeos\\MShop\\Media\\Manager\\Iface';
80
-		$classname = '\\Aimeos\\MShop\\Media\\Manager\\' . $name;
80
+		$classname = '\\Aimeos\\MShop\\Media\\Manager\\'.$name;
81 81
 
82 82
 		$manager = self::createManagerBase( $context, $classname, $iface );
83 83
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Media/Manager/Lists/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -319,7 +319,7 @@
 block discarded – undo
319 319
 		 * @see mshop/media/manager/lists/decorators/global
320 320
 		 */
321 321
 
322
-		return $this->getSubManagerBase( 'media', 'lists/' . $manager, $name );
322
+		return $this->getSubManagerBase( 'media', 'lists/'.$manager, $name );
323 323
 	}
324 324
 
325 325
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Media/Manager/Lists/Type/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@
 block discarded – undo
282 282
 		 * @see mshop/media/manager/lists/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'media', 'lists/type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'media', 'lists/type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Media/Manager/Type/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@
 block discarded – undo
282 282
 		 * @see mshop/media/manager/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'media', 'type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'media', 'type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Tag/Manager/Factory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,12 +72,12 @@
 block discarded – undo
72 72
 
73 73
 		if( ctype_alnum( $name ) === false )
74 74
 		{
75
-			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Tag\\Manager\\' . $name : '<not a string>';
75
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Tag\\Manager\\'.$name : '<not a string>';
76 76
 			throw new \Aimeos\MShop\Tag\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
77 77
 		}
78 78
 
79 79
 		$iface = '\\Aimeos\\MShop\\Tag\\Manager\\Iface';
80
-		$classname = '\\Aimeos\\MShop\\Tag\\Manager\\' . $name;
80
+		$classname = '\\Aimeos\\MShop\\Tag\\Manager\\'.$name;
81 81
 
82 82
 		$manager = self::createManagerBase( $context, $classname, $iface );
83 83
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Tag/Manager/Standard.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -686,7 +686,7 @@
 block discarded – undo
686 686
 		 * @see mshop/tag/manager/decorators/global
687 687
 		 */
688 688
 
689
-		return $this->getSubManagerBase( 'tag', '' . $manager, $name );
689
+		return $this->getSubManagerBase( 'tag', ''.$manager, $name );
690 690
 	}
691 691
 
692 692
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -195,8 +195,7 @@
 block discarded – undo
195 195
 				 * @see mshop/tag/manager/standard/count/ansi
196 196
 				 */
197 197
 				$path = 'mshop/tag/manager/standard/insert';
198
-			}
199
-			else
198
+			} else
200 199
 			{
201 200
 				/** mshop/tag/manager/standard/update/mysql
202 201
 				 * Updates an existing tag tag record in the database
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Tag/Manager/Type/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -282,7 +282,7 @@
 block discarded – undo
282 282
 		 * @see mshop/tag/manager/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'tag', 'type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'tag', 'type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Service/Manager/Factory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,12 +72,12 @@
 block discarded – undo
72 72
 
73 73
 		if( ctype_alnum( $name ) === false )
74 74
 		{
75
-			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Service\\Manager\\' . $name : '<not a string>';
75
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Service\\Manager\\'.$name : '<not a string>';
76 76
 			throw new \Aimeos\MShop\Service\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
77 77
 		}
78 78
 
79 79
 		$iface = '\\Aimeos\\MShop\\Service\\Manager\\Iface';
80
-		$classname = '\\Aimeos\\MShop\\Service\\Manager\\' . $name;
80
+		$classname = '\\Aimeos\\MShop\\Service\\Manager\\'.$name;
81 81
 
82 82
 		$manager = self::createManagerBase( $context, $classname, $iface );
83 83
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Service/Manager/Lists/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -319,7 +319,7 @@
 block discarded – undo
319 319
 		 * @see mshop/service/manager/lists/decorators/global
320 320
 		 */
321 321
 
322
-		return $this->getSubManagerBase( 'service', 'lists/' . $manager, $name );
322
+		return $this->getSubManagerBase( 'service', 'lists/'.$manager, $name );
323 323
 	}
324 324
 
325 325
 
Please login to merge, or discard this patch.