Completed
Push — master ( 7ac949...d0dda4 )
by Aimeos
11:16
created
lib/mshoplib/src/MShop/Service/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/service/manager/type/decorators/global
283 283
 		 */
284 284
 
285
-		return $this->getSubManagerBase( 'service', 'type/' . $manager, $name );
285
+		return $this->getSubManagerBase( 'service', 'type/'.$manager, $name );
286 286
 	}
287 287
 
288 288
 
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Service/Manager/Base.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 				throw new \Aimeos\MShop\Service\Exception( sprintf( 'Invalid characters in class name "%1$s"', $name ) );
42 42
 			}
43 43
 
44
-			$classname = $classprefix . $name;
44
+			$classname = $classprefix.$name;
45 45
 
46 46
 			if( class_exists( $classname ) === false ) {
47 47
 				throw new \Aimeos\MShop\Service\Exception( sprintf( 'Class "%1$s" not available', $classname ) );
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Order/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\\Order\\Manager\\' . $name : '<not a string>';
75
+			$classname = is_string( $name ) ? '\\Aimeos\\MShop\\Order\\Manager\\'.$name : '<not a string>';
76 76
 			throw new \Aimeos\MShop\Order\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
77 77
 		}
78 78
 
79 79
 		$iface = '\\Aimeos\\MShop\\Order\\Manager\\Iface';
80
-		$classname = '\\Aimeos\\MShop\\Order\\Manager\\' . $name;
80
+		$classname = '\\Aimeos\\MShop\\Order\\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/Order/Manager/Status/Standard.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -579,7 +579,7 @@
 block discarded – undo
579 579
 		 * @see mshop/order/manager/status/decorators/global
580 580
 		 */
581 581
 
582
-		return $this->getSubManagerBase( 'order', 'status/' . $manager, $name );
582
+		return $this->getSubManagerBase( 'order', 'status/'.$manager, $name );
583 583
 	}
584 584
 
585 585
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -251,8 +251,7 @@
 block discarded – undo
251 251
 				 * @see mshop/order/manager/status/standard/count/ansi
252 252
 				 */
253 253
 				$path = 'mshop/order/manager/status/standard/insert';
254
-			}
255
-			else
254
+			} else
256 255
 			{
257 256
 				/** mshop/order/manager/status/standard/update/mysql
258 257
 				 * 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
@@ -590,6 +590,7 @@
 block discarded – undo
590 590
 	 * @param \Aimeos\MW\Criteria\Iface $search Search criteria object
591 591
 	 * @param string[] $ref List of domains to fetch list items and referenced items for
592 592
 	 * @param integer|null &$total Number of items that are available in total
593
+	 * @param integer $total
593 594
 	 * @return array List of items implementing \Aimeos\MShop\Order\Item\Status\Iface
594 595
 	 */
595 596
 	public function searchItems( \Aimeos\MW\Criteria\Iface $search, array $ref = [], &$total = null )
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Order/Manager/Base/Product/Attribute/Standard.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -605,7 +605,7 @@
 block discarded – undo
605 605
 		 * @see mshop/order/manager/base/product/attribute/decorators/global
606 606
 		 */
607 607
 
608
-		return $this->getSubManagerBase( 'order', 'base/product/attribute/' . $manager, $name );
608
+		return $this->getSubManagerBase( 'order', 'base/product/attribute/'.$manager, $name );
609 609
 	}
610 610
 
611 611
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -290,8 +290,7 @@
 block discarded – undo
290 290
 				 * @see mshop/order/manager/base/product/attribute/standard/count/ansi
291 291
 				 */
292 292
 				$path = 'mshop/order/manager/base/product/attribute/standard/insert';
293
-			}
294
-			else
293
+			} else
295 294
 			{
296 295
 				/** mshop/order/manager/base/product/attribute/standard/update/mysql
297 296
 				 * Updates an existing order record in the database
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Order/Manager/Base/Product/Standard.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -730,7 +730,7 @@
 block discarded – undo
730 730
 		 * @see mshop/order/manager/base/product/decorators/global
731 731
 		 */
732 732
 
733
-		return $this->getSubManagerBase( 'order', 'base/product/' . $manager, $name );
733
+		return $this->getSubManagerBase( 'order', 'base/product/'.$manager, $name );
734 734
 	}
735 735
 
736 736
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -402,8 +402,7 @@
 block discarded – undo
402 402
 				 * @see mshop/order/manager/base/product/standard/count/ansi
403 403
 				 */
404 404
 				$path = 'mshop/order/manager/base/product/standard/insert';
405
-			}
406
-			else
405
+			} else
407 406
 			{
408 407
 				/** mshop/order/manager/base/product/standard/update/mysql
409 408
 				 * Updates an existing order record in the database
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Order/Manager/Base/Service/Attribute/Standard.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -770,7 +770,7 @@
 block discarded – undo
770 770
 		 * @see mshop/order/manager/base/service/attribute/decorators/global
771 771
 		 */
772 772
 
773
-		return $this->getSubManagerBase( 'order', 'base/service/attribute/' . $manager, $name );
773
+		return $this->getSubManagerBase( 'order', 'base/service/attribute/'.$manager, $name );
774 774
 	}
775 775
 
776 776
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -289,8 +289,7 @@
 block discarded – undo
289 289
 				 * @see mshop/order/manager/base/service/attribute/standard/count/ansi
290 290
 				 */
291 291
 				$path = 'mshop/order/manager/base/service/attribute/standard/insert';
292
-			}
293
-			else
292
+			} else
294 293
 			{
295 294
 				/** mshop/order/manager/base/service/attribute/standard/update/mysql
296 295
 				 * 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
@@ -493,6 +493,7 @@
 block discarded – undo
493 493
 	 * @param \Aimeos\MW\Criteria\Iface $search Search criteria object
494 494
 	 * @param string[] $ref List of domains to fetch list items and referenced items for
495 495
 	 * @param integer|null &$total Number of items that are available in total
496
+	 * @param integer $total
496 497
 	 * @return array List of items implementing \Aimeos\MShop\Order\Item\Base\Service\Attribute\Iface
497 498
 	 */
498 499
 	public function searchItems( \Aimeos\MW\Criteria\Iface $search, array $ref = [], &$total = null )
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Order/Manager/Base/Address/Standard.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -895,7 +895,7 @@
 block discarded – undo
895 895
 		 * @see mshop/order/manager/base/address/decorators/global
896 896
 		 */
897 897
 
898
-		return $this->getSubManagerBase( 'order', 'base/address/' . $manager, $name );
898
+		return $this->getSubManagerBase( 'order', 'base/address/'.$manager, $name );
899 899
 	}
900 900
 
901 901
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -400,8 +400,7 @@
 block discarded – undo
400 400
 				 * @see mshop/order/manager/base/address/standard/count/ansi
401 401
 				 */
402 402
 				$path = 'mshop/order/manager/base/address/standard/insert';
403
-			}
404
-			else
403
+			} else
405 404
 			{
406 405
 				/** mshop/order/manager/base/address/standard/update/mysql
407 406
 				 * Updates an existing order record in the database
Please login to merge, or discard this patch.
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.