Completed
Push — master ( 52c730...9eba1c )
by Aimeos
08:52
created
lib/mshoplib/src/MShop/Product/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/product/manager/lists/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'product', 'lists/type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'product', 'lists/type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Product/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/product/manager/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'product', 'type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'product', 'type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Price/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\\Price\\Manager\\' . $name : '<not a string>';
75
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Price\\Manager\\'.$name : '<not a string>';
76 76
 			throw new \Aimeos\MShop\Price\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
77 77
 		}
78 78
 
79 79
 		$iface = '\\Aimeos\\MShop\\Price\\Manager\\Iface';
80
-		$classname = '\\Aimeos\\MShop\\Price\\Manager\\' . $name;
80
+		$classname = '\\Aimeos\\MShop\\Price\\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/Price/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/price/manager/lists/decorators/global
320 320
 		 */
321 321
 
322
-		return $this->getSubManagerBase( 'price', 'lists/' . $manager, $name );
322
+		return $this->getSubManagerBase( 'price', 'lists/'.$manager, $name );
323 323
 	}
324 324
 
325 325
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Price/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/price/manager/lists/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'price', 'lists/type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'price', 'lists/type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Price/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/price/manager/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'price', 'type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'price', 'type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Attribute/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\\Attribute\\Manager\\' . $name : '<not a string>';
75
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Attribute\\Manager\\'.$name : '<not a string>';
76 76
 			throw new \Aimeos\MShop\Attribute\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
77 77
 		}
78 78
 
79 79
 		$iface = '\\Aimeos\\MShop\\Attribute\\Manager\\Iface';
80
-		$classname = '\\Aimeos\\MShop\\Attribute\\Manager\\' . $name;
80
+		$classname = '\\Aimeos\\MShop\\Attribute\\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/Attribute/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/attribute/manager/lists/decorators/global
320 320
 		 */
321 321
 
322
-		return $this->getSubManagerBase( 'attribute', 'lists/' . $manager, $name );
322
+		return $this->getSubManagerBase( 'attribute', 'lists/'.$manager, $name );
323 323
 	}
324 324
 
325 325
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Attribute/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/attribute/manager/lists/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'attribute', 'lists/type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'attribute', 'lists/type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.