@@ -97,10 +97,10 @@ discard block |
||
97 | 97 | 'bool' => 't.bool', |
98 | 98 | ); |
99 | 99 | |
100 | - $expr = new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '==', 'list', array('a', 'b', 'c') ); |
|
100 | + $expr = new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '==', 'list', array( 'a', 'b', 'c' ) ); |
|
101 | 101 | $this->assertEquals( "t.list IN ('a','b','c')", $expr->toString( $types, $translations ) ); |
102 | 102 | |
103 | - $expr = new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '!=', 'list', array('a', 'b', 'c') ); |
|
103 | + $expr = new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '!=', 'list', array( 'a', 'b', 'c' ) ); |
|
104 | 104 | $this->assertEquals( "t.list NOT IN ('a','b','c')", $expr->toString( $types, $translations ) ); |
105 | 105 | |
106 | 106 | $expr = new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '~=', 'string', 'value' ); |
@@ -109,19 +109,19 @@ discard block |
||
109 | 109 | $expr = new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '<', 'float', 0.1 ); |
110 | 110 | $this->assertEquals( "t.float < 0.1", $expr->toString( $types, $translations ) ); |
111 | 111 | |
112 | - $expr= new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '>', 'int', 10 ); |
|
112 | + $expr = new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '>', 'int', 10 ); |
|
113 | 113 | $this->assertEquals( "t.int > 10", $expr->toString( $types, $translations ) ); |
114 | 114 | |
115 | - $expr= new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '!=', 'undefined', null ); |
|
115 | + $expr = new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '!=', 'undefined', null ); |
|
116 | 116 | $this->assertEquals( "t.undefined IS NOT NULL", $expr->toString( $types, $translations ) ); |
117 | 117 | |
118 | - $expr= new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '==', 'bool', true ); |
|
118 | + $expr = new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '==', 'bool', true ); |
|
119 | 119 | $this->assertEquals( "t.bool = 1", $expr->toString( $types, $translations ) ); |
120 | 120 | |
121 | - $expr= new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '&', 'int', 0x2 ); |
|
121 | + $expr = new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '&', 'int', 0x2 ); |
|
122 | 122 | $this->assertEquals( "t.int & 2", $expr->toString( $types, $translations ) ); |
123 | 123 | |
124 | - $expr= new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '|', 'int', 0x4 ); |
|
124 | + $expr = new \Aimeos\MW\Criteria\Expression\Compare\SQL( $this->conn, '|', 'int', 0x4 ); |
|
125 | 125 | $this->assertEquals( "t.int | 4", $expr->toString( $types, $translations ) ); |
126 | 126 | } |
127 | 127 |
@@ -33,7 +33,7 @@ |
||
33 | 33 | * @param \Aimeos\MShop\Coupon\Item\Iface $couponItem Coupon item with configuration for the provider |
34 | 34 | * @param string $code Coupon code entered by the customer |
35 | 35 | */ |
36 | - public function __construct( \Aimeos\MShop\Coupon\Provider\Iface $provider, |
|
36 | + public function __construct( \Aimeos\MShop\Coupon\Provider\Iface $provider, |
|
37 | 37 | \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Coupon\Item\Iface $couponItem, $code ) |
38 | 38 | { |
39 | 39 | $this->provider = $provider; |
@@ -35,7 +35,7 @@ |
||
35 | 35 | $this->orderBase = new \Aimeos\MShop\Order\Item\Base\Standard( $priceManager->createItem(), $context->getLocale() ); |
36 | 36 | |
37 | 37 | $provider = new \Aimeos\MShop\Coupon\Provider\Example( $context, $item, 'abcd' ); |
38 | - $this->object = new \Aimeos\MShop\Coupon\Provider\Decorator\Example( $provider, $context, $item, 'abcd'); |
|
38 | + $this->object = new \Aimeos\MShop\Coupon\Provider\Decorator\Example( $provider, $context, $item, 'abcd' ); |
|
39 | 39 | $this->object->setObject( $this->object ); |
40 | 40 | } |
41 | 41 |
@@ -33,7 +33,7 @@ |
||
33 | 33 | $this->couponItem = \Aimeos\MShop\Coupon\Manager\Factory::createManager( $context )->createItem(); |
34 | 34 | |
35 | 35 | $provider = new \Aimeos\MShop\Coupon\Provider\Example( $context, $this->couponItem, 'abcd' ); |
36 | - $this->object = new \Aimeos\MShop\Coupon\Provider\Decorator\Required( $provider, $context, $this->couponItem, 'abcd'); |
|
36 | + $this->object = new \Aimeos\MShop\Coupon\Provider\Decorator\Required( $provider, $context, $this->couponItem, 'abcd' ); |
|
37 | 37 | $this->object->setObject( $this->object ); |
38 | 38 | |
39 | 39 | $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( $context ); |
@@ -76,7 +76,7 @@ |
||
76 | 76 | { |
77 | 77 | if( $code == $this->getCode() ) { return $this; } |
78 | 78 | |
79 | - $this->values['locale.site.code'] = (string) $this->checkCode( $code );; |
|
79 | + $this->values['locale.site.code'] = (string) $this->checkCode( $code ); ; |
|
80 | 80 | $this->setModified(); |
81 | 81 | |
82 | 82 | return $this; |
@@ -191,7 +191,7 @@ |
||
191 | 191 | { |
192 | 192 | if( $code == $this->getCode() ) { return $this; } |
193 | 193 | |
194 | - $this->values['order.base.service.attribute.code'] = (string) $this->checkCode( $code );; |
|
194 | + $this->values['order.base.service.attribute.code'] = (string) $this->checkCode( $code ); ; |
|
195 | 195 | $this->setModified(); |
196 | 196 | |
197 | 197 | return $this; |
@@ -145,7 +145,7 @@ |
||
145 | 145 | { |
146 | 146 | if( $code == $this->getCode() ) { return $this; } |
147 | 147 | |
148 | - $this->values['order.base.service.code'] = (string) $this->checkCode( $code );; |
|
148 | + $this->values['order.base.service.code'] = (string) $this->checkCode( $code ); ; |
|
149 | 149 | $this->setModified(); |
150 | 150 | |
151 | 151 | return $this; |
@@ -64,7 +64,7 @@ |
||
64 | 64 | { |
65 | 65 | if( $code == $this->getCode() ) { return $this; } |
66 | 66 | |
67 | - $this->values['service.code'] = (string) $this->checkCode( $code );; |
|
67 | + $this->values['service.code'] = (string) $this->checkCode( $code ); ; |
|
68 | 68 | $this->setModified(); |
69 | 69 | |
70 | 70 | return $this; |
@@ -96,7 +96,7 @@ |
||
96 | 96 | { |
97 | 97 | if( $value == $this->getCode() ) { return $this; } |
98 | 98 | |
99 | - $this->values['supplier.code'] = (string) $this->checkCode( $value );; |
|
99 | + $this->values['supplier.code'] = (string) $this->checkCode( $value ); ; |
|
100 | 100 | $this->setModified(); |
101 | 101 | |
102 | 102 | return $this; |