Completed
Push — master ( 212c5f...8d6a89 )
by Aimeos
08:59
created
lib/mshoplib/src/MShop/Order/Manager/Base/Coupon/Standard.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -741,7 +741,7 @@
 block discarded – undo
741 741
 		 * @see mshop/order/manager/base/coupon/decorators/global
742 742
 		 */
743 743
 
744
-		return $this->getSubManagerBase( 'order', 'base/coupon/' . $manager, $name );
744
+		return $this->getSubManagerBase( 'order', 'base/coupon/'.$manager, $name );
745 745
 	}
746 746
 
747 747
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -268,8 +268,7 @@
 block discarded – undo
268 268
 				 * @see mshop/order/manager/base/coupon/standard/count/ansi
269 269
 				 */
270 270
 				$path = 'mshop/order/manager/base/coupon/standard/insert';
271
-			}
272
-			else
271
+			} else
273 272
 			{
274 273
 				/** mshop/order/manager/base/coupon/standard/update/mysql
275 274
 				 * Updates an existing order record in the database
Please login to merge, or discard this patch.
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -470,6 +470,7 @@
 block discarded – undo
470 470
 	 * @param \Aimeos\MW\Criteria\Iface $search Search criteria object
471 471
 	 * @param string[] $ref List of domains to fetch list items and referenced items for
472 472
 	 * @param integer|null &$total Number of items that are available in total
473
+	 * @param integer $total
473 474
 	 * @return array Return a list of items implementing \Aimeos\MShop\Order\Item\Base\Coupon\Iface
474 475
 	 */
475 476
 	public function searchItems( \Aimeos\MW\Criteria\Iface $search, array $ref = [], &$total = null )
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Text/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\\Text\\Manager\\' . $name : '<not a string>';
75
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Text\\Manager\\'.$name : '<not a string>';
76 76
 			throw new \Aimeos\MShop\Text\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
77 77
 		}
78 78
 
79 79
 		$iface = '\\Aimeos\\MShop\\Text\\Manager\\Iface';
80
-		$classname = '\\Aimeos\\MShop\\Text\\Manager\\' . $name;
80
+		$classname = '\\Aimeos\\MShop\\Text\\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/Text/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/text/manager/lists/decorators/global
320 320
 		 */
321 321
 
322
-		return $this->getSubManagerBase( 'text', 'lists/' . $manager, $name );
322
+		return $this->getSubManagerBase( 'text', 'lists/'.$manager, $name );
323 323
 	}
324 324
 
325 325
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Text/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/text/manager/lists/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'text', 'lists/type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'text', 'lists/type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Text/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/text/manager/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'text', 'type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'text', 'type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Catalog/Manager/Factory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,12 +71,12 @@
 block discarded – undo
71 71
 
72 72
 		if( ctype_alnum( $name ) === false )
73 73
 		{
74
-			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Catalog\\Manager\\' . $name : '<not a string>';
74
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Catalog\\Manager\\'.$name : '<not a string>';
75 75
 			throw new \Aimeos\MShop\Catalog\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
76 76
 		}
77 77
 
78 78
 		$iface = '\\Aimeos\\MShop\\Catalog\\Manager\\Iface';
79
-		$classname = '\\Aimeos\\MShop\\Catalog\\Manager\\' . $name;
79
+		$classname = '\\Aimeos\\MShop\\Catalog\\Manager\\'.$name;
80 80
 
81 81
 		$manager = self::createManagerBase( $context, $classname, $iface );
82 82
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Catalog/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/catalog/manager/lists/decorators/global
320 320
 		 */
321 321
 
322
-		return $this->getSubManagerBase( 'catalog', 'lists/' . $manager, $name );
322
+		return $this->getSubManagerBase( 'catalog', 'lists/'.$manager, $name );
323 323
 	}
324 324
 
325 325
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Catalog/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/catalog/manager/lists/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'catalog', 'lists/type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'catalog', 'lists/type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Index/Manager/Factory.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,12 +70,12 @@
 block discarded – undo
70 70
 
71 71
 		if( ctype_alnum( $name ) === false )
72 72
 		{
73
-			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Index\\Manager\\' . $name : '<not a string>';
73
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Index\\Manager\\'.$name : '<not a string>';
74 74
 			throw new \Aimeos\MShop\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
75 75
 		}
76 76
 
77 77
 		$iface = '\\Aimeos\\MShop\\Index\\Manager\\Iface';
78
-		$classname = '\\Aimeos\\MShop\\Index\\Manager\\' . $name;
78
+		$classname = '\\Aimeos\\MShop\\Index\\Manager\\'.$name;
79 79
 
80 80
 		$manager = self::createManagerBase( $context, $classname, $iface );
81 81
 
Please login to merge, or discard this patch.