Completed
Push — master ( 32337a...5c15c9 )
by Aimeos
10:07
created
lib/mshoplib/src/MShop/Plugin/Manager/Iface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -33,6 +33,7 @@
 block discarded – undo
33 33
 	 *
34 34
 	 * @param \Aimeos\MW\Observer\Publisher\Iface $publisher Publisher object
35 35
 	 * @param string $type Plugin type code
36
+	 * @return void
36 37
 	 */
37 38
 	public function register( \Aimeos\MW\Observer\Publisher\Iface $publisher, $type );
38 39
 }
Please login to merge, or discard this patch.
lib/mshoplib/src/MShop/Coupon/Manager/Base.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 		}
42 42
 
43 43
 		$interface = '\\Aimeos\\MShop\\Coupon\\Provider\\Factory\\Iface';
44
-		$classname = '\\Aimeos\\MShop\\Coupon\\Provider\\' . $providername;
44
+		$classname = '\\Aimeos\\MShop\\Coupon\\Provider\\'.$providername;
45 45
 
46 46
 		if( class_exists( $classname ) === false ) {
47 47
 			throw new \Aimeos\MShop\Coupon\Exception( sprintf( 'Class "%1$s" not available', $classname ) );
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 				throw new \Aimeos\MShop\Coupon\Exception( sprintf( 'Invalid characters in class name "%1$s"', $name ) );
112 112
 			}
113 113
 
114
-			$classname = $classprefix . $name;
114
+			$classname = $classprefix.$name;
115 115
 
116 116
 			if( class_exists( $classname ) === false ) {
117 117
 				throw new \Aimeos\MShop\Coupon\Exception( sprintf( 'Class "%1$s" not available', $classname ) );
Please login to merge, or discard this patch.