Completed
Push — master ( c7cb6f...a11e92 )
by Aimeos
10:48
created
lib/mshoplib/src/MShop/Supplier/Manager/Lists/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -318,7 +318,7 @@
 block discarded – undo
318 318
 		 * @see mshop/supplier/manager/lists/decorators/global
319 319
 		 */
320 320
 
321
-		return $this->getSubManagerBase( 'supplier', 'lists/' . $manager, $name );
321
+		return $this->getSubManagerBase( 'supplier', 'lists/'.$manager, $name );
322 322
 	}
323 323
 
324 324
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Supplier/Manager/Lists/Type/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -281,7 +281,7 @@
 block discarded – undo
281 281
 		 * @see mshop/supplier/manager/lists/type/decorators/global
282 282
 		 */
283 283
 
284
-		return $this->getSubManagerBase( 'supplier', 'lists/type/' . $manager, $name );
284
+		return $this->getSubManagerBase( 'supplier', 'lists/type/'.$manager, $name );
285 285
 	}
286 286
 
287 287
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Supplier/Manager/Address/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -403,7 +403,7 @@
 block discarded – undo
403 403
 		 * @see mshop/supplier/manager/address/decorators/global
404 404
 		 */
405 405
 
406
-		return $this->getSubManagerBase( 'supplier', 'address/' . $manager, $name );
406
+		return $this->getSubManagerBase( 'supplier', 'address/'.$manager, $name );
407 407
 	}
408 408
 
409 409
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Plugin/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\\Plugin\\Manager\\' . $name : '<not a string>';
75
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Plugin\\Manager\\'.$name : '<not a string>';
76 76
 			throw new \Aimeos\MShop\Plugin\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
77 77
 		}
78 78
 
79 79
 		$iface = '\\Aimeos\\MShop\\Plugin\\Manager\\Iface';
80
-		$classname = '\\Aimeos\\MShop\\Plugin\\Manager\\' . $name;
80
+		$classname = '\\Aimeos\\MShop\\Plugin\\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/Plugin/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/plugin/manager/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'plugin', 'type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'plugin', 'type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Product/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\\Product\\Manager\\' . $name : '<not a string>';
75
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Product\\Manager\\'.$name : '<not a string>';
76 76
 			throw new \Aimeos\MShop\Product\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
77 77
 		}
78 78
 
79 79
 		$iface = '\\Aimeos\\MShop\\Product\\Manager\\Iface';
80
-		$classname = '\\Aimeos\\MShop\\Product\\Manager\\' . $name;
80
+		$classname = '\\Aimeos\\MShop\\Product\\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/Product/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/product/manager/lists/decorators/global
320 320
 		 */
321 321
 
322
-		return $this->getSubManagerBase( 'product', 'lists/' . $manager, $name );
322
+		return $this->getSubManagerBase( 'product', 'lists/'.$manager, $name );
323 323
 	}
324 324
 
325 325
 
Please login to merge, or discard this patch.
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.