Completed
Push — master ( b119a8...b94e09 )
by Aimeos
02:42
created
frontend/tests/Controller/Frontend/Basket/Decorator/BundleTest.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -12,28 +12,28 @@
 block discarded – undo
12 12
 	protected function setUp()
13 13
 	{
14 14
 		$this->context = \TestHelperFrontend::getContext();
15
-		$object = new \Aimeos\Controller\Frontend\Basket\Standard( $this->context );
16
-		$this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Bundle( $object, $this->context );
15
+		$object = new \Aimeos\Controller\Frontend\Basket\Standard($this->context);
16
+		$this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Bundle($object, $this->context);
17 17
 	}
18 18
 
19 19
 
20 20
 	protected function tearDown()
21 21
 	{
22 22
 		$this->object->clear();
23
-		$this->context->getSession()->set( 'aimeos', array() );
23
+		$this->context->getSession()->set('aimeos', array());
24 24
 
25
-		unset( $this->object );
25
+		unset($this->object);
26 26
 	}
27 27
 
28 28
 
29 29
 	public function testAddProductBundle()
30 30
 	{
31
-		$item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:BUNDLE' );
31
+		$item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:BUNDLE');
32 32
 
33
-		$this->object->addProduct( $item->getId(), 1 );
33
+		$this->object->addProduct($item->getId(), 1);
34 34
 
35
-		$this->assertEquals( 1, count( $this->object->get()->getProducts() ) );
36
-		$this->assertEquals( 'U:BUNDLE', $this->object->get()->getProduct( 0 )->getProductCode() );
37
-		$this->assertEquals( 2, count( $this->object->get()->getProduct( 0 )->getProducts() ) );
35
+		$this->assertEquals(1, count($this->object->get()->getProducts()));
36
+		$this->assertEquals('U:BUNDLE', $this->object->get()->getProduct(0)->getProductCode());
37
+		$this->assertEquals(2, count($this->object->get()->getProduct(0)->getProducts()));
38 38
 	}
39 39
 }
Please login to merge, or discard this patch.
controller/frontend/tests/Controller/Frontend/Common/Decorator/Example.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 class Example
22 22
 	implements \Aimeos\Controller\Frontend\Common\Decorator\Iface
23 23
 {
24
-	public function __construct( \Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context )
24
+	public function __construct(\Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context)
25 25
 	{
26 26
 	}
27 27
 }
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Basket/Decorator/Base.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 	 * @param \Aimeos\Controller\Frontend\Iface $controller Controller object
32 32
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context object with required objects
33 33
 	 */
34
-	public function __construct( \Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context )
34
+	public function __construct(\Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context)
35 35
 	{
36 36
 		$this->context = $context;
37 37
 		$this->controller = $controller;
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
 	 * @return mixed Returns the value of the called method
47 47
 	 * @throws \Aimeos\Controller\Frontend\Exception If method call failed
48 48
 	 */
49
-	public function __call( $name, array $param )
49
+	public function __call($name, array $param)
50 50
 	{
51
-		return call_user_func_array( array( $this->controller, $name ), $param );
51
+		return call_user_func_array(array($this->controller, $name), $param);
52 52
 	}
53 53
 
54 54
 
@@ -103,9 +103,9 @@  discard block
 block discarded – undo
103 103
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available
104 104
 	 * @return void
105 105
 	 */
106
-	public function addProduct( $prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(),
106
+	public function addProduct($prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(),
107 107
 		array $configAttributeIds = array(), array $hiddenAttributeIds = array(), array $customAttributeValues = array(),
108
-		$stocktype = 'default' )
108
+		$stocktype = 'default')
109 109
 	{
110 110
 		$this->getController()->addProduct(
111 111
 			$prodid, $quantity, $options, $variantAttributeIds, $configAttributeIds,
@@ -120,9 +120,9 @@  discard block
 block discarded – undo
120 120
 	 * @param integer $position Position number (key) of the order product item
121 121
 	 * @return void
122 122
 	 */
123
-	public function deleteProduct( $position )
123
+	public function deleteProduct($position)
124 124
 	{
125
-		$this->getController()->deleteProduct( $position );
125
+		$this->getController()->deleteProduct($position);
126 126
 	}
127 127
 
128 128
 
@@ -135,9 +135,9 @@  discard block
 block discarded – undo
135 135
 	 * @param array $configAttributeCodes Codes of the product config attributes that should be REMOVED
136 136
 	 * @return void
137 137
 	 */
138
-	public function editProduct( $position, $quantity, array $options = array(), array $configAttributeCodes = array() )
138
+	public function editProduct($position, $quantity, array $options = array(), array $configAttributeCodes = array())
139 139
 	{
140
-		$this->getController()->editProduct( $position, $quantity, $options, $configAttributeCodes );
140
+		$this->getController()->editProduct($position, $quantity, $options, $configAttributeCodes);
141 141
 	}
142 142
 
143 143
 
@@ -148,9 +148,9 @@  discard block
 block discarded – undo
148 148
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid or not allowed
149 149
 	 * @return void
150 150
 	 */
151
-	public function addCoupon( $code )
151
+	public function addCoupon($code)
152 152
 	{
153
-		$this->getController()->addCoupon( $code );
153
+		$this->getController()->addCoupon($code);
154 154
 	}
155 155
 
156 156
 
@@ -161,9 +161,9 @@  discard block
 block discarded – undo
161 161
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid
162 162
 	 * @return void
163 163
 	 */
164
-	public function deleteCoupon( $code )
164
+	public function deleteCoupon($code)
165 165
 	{
166
-		$this->getController()->deleteCoupon( $code );
166
+		$this->getController()->deleteCoupon($code);
167 167
 	}
168 168
 
169 169
 
@@ -176,9 +176,9 @@  discard block
 block discarded – undo
176 176
 	 * 	if one of the keys is invalid when using an array with key/value pairs
177 177
 	 * @return void
178 178
 	 */
179
-	public function setAddress( $type, $value )
179
+	public function setAddress($type, $value)
180 180
 	{
181
-		$this->getController()->setAddress( $type, $value );
181
+		$this->getController()->setAddress($type, $value);
182 182
 	}
183 183
 
184 184
 
@@ -192,9 +192,9 @@  discard block
 block discarded – undo
192 192
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached
193 193
 	 * @return void
194 194
 	 */
195
-	public function setService( $type, $id, array $attributes = array() )
195
+	public function setService($type, $id, array $attributes = array())
196 196
 	{
197
-		$this->getController()->setService( $type, $id, $attributes );
197
+		$this->getController()->setService($type, $id, $attributes);
198 198
 	}
199 199
 
200 200
 
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Basket/Decorator/Bundle.php 1 patch
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -41,15 +41,15 @@  discard block
 block discarded – undo
41 41
 	 * @param string $stocktype Unique code of the stock type to deliver the products from
42 42
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available
43 43
 	 */
44
-	public function addProduct( $prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(),
44
+	public function addProduct($prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(),
45 45
 		array $configAttributeIds = array(), array $hiddenAttributeIds = array(), array $customAttributeValues = array(),
46
-		$stocktype = 'default' )
46
+		$stocktype = 'default')
47 47
 	{
48 48
 		$context = $this->getContext();
49
-		$productManager = \Aimeos\MShop\Factory::createManager( $context, 'product' );
50
-		$productItem = $productManager->getItem( $prodid, array( 'media', 'supplier', 'price', 'product', 'text' ) );
49
+		$productManager = \Aimeos\MShop\Factory::createManager($context, 'product');
50
+		$productItem = $productManager->getItem($prodid, array('media', 'supplier', 'price', 'product', 'text'));
51 51
 
52
-		if( $productItem->getType() !== 'bundle' )
52
+		if ($productItem->getType() !== 'bundle')
53 53
 		{
54 54
 			return $this->getController()->addProduct(
55 55
 				$prodid, $quantity, $options, $variantAttributeIds, $configAttributeIds,
@@ -57,28 +57,28 @@  discard block
 block discarded – undo
57 57
 			);
58 58
 		}
59 59
 
60
-		$orderBaseProductItem = \Aimeos\MShop\Factory::createManager( $context, 'order/base/product' )->createItem();
61
-		$orderBaseProductItem->copyFrom( $productItem );
62
-		$orderBaseProductItem->setQuantity( $quantity );
63
-		$orderBaseProductItem->setStockType( $stocktype );
60
+		$orderBaseProductItem = \Aimeos\MShop\Factory::createManager($context, 'order/base/product')->createItem();
61
+		$orderBaseProductItem->copyFrom($productItem);
62
+		$orderBaseProductItem->setQuantity($quantity);
63
+		$orderBaseProductItem->setStockType($stocktype);
64 64
 
65
-		$prices = $productItem->getRefItems( 'price', 'default', 'default' );
66
-		$this->addBundleProducts( $orderBaseProductItem, $productItem, $variantAttributeIds, $stocktype );
65
+		$prices = $productItem->getRefItems('price', 'default', 'default');
66
+		$this->addBundleProducts($orderBaseProductItem, $productItem, $variantAttributeIds, $stocktype);
67 67
 
68
-		$priceManager = \Aimeos\MShop\Factory::createManager( $context, 'price' );
69
-		$price = $priceManager->getLowestPrice( $prices, $quantity );
68
+		$priceManager = \Aimeos\MShop\Factory::createManager($context, 'price');
69
+		$price = $priceManager->getLowestPrice($prices, $quantity);
70 70
 
71
-		$attr = $this->createOrderProductAttributes( $price, $prodid, $quantity, $configAttributeIds, 'config' );
72
-		$attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, $hiddenAttributeIds, 'hidden' ) );
73
-		$attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, array_keys( $customAttributeValues ), 'custom', $customAttributeValues ) );
71
+		$attr = $this->createOrderProductAttributes($price, $prodid, $quantity, $configAttributeIds, 'config');
72
+		$attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, $hiddenAttributeIds, 'hidden'));
73
+		$attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, array_keys($customAttributeValues), 'custom', $customAttributeValues));
74 74
 
75 75
 		// remove product rebate of original price in favor to rebates granted for the order
76
-		$price->setRebate( '0.00' );
76
+		$price->setRebate('0.00');
77 77
 
78
-		$orderBaseProductItem->setPrice( $price );
79
-		$orderBaseProductItem->setAttributes( $attr );
78
+		$orderBaseProductItem->setPrice($price);
79
+		$orderBaseProductItem->setAttributes($attr);
80 80
 
81
-		$this->getController()->get()->addProduct( $orderBaseProductItem );
81
+		$this->getController()->get()->addProduct($orderBaseProductItem);
82 82
 		$this->getController()->save();
83 83
 	}
84 84
 
@@ -91,43 +91,43 @@  discard block
 block discarded – undo
91 91
 	 * @param array $variantAttributeIds List of product variant attribute IDs
92 92
 	 * @param string $stocktype
93 93
 	 */
94
-	protected function addBundleProducts( \Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem,
95
-		\Aimeos\MShop\Product\Item\Iface $productItem, array $variantAttributeIds, $stocktype )
94
+	protected function addBundleProducts(\Aimeos\MShop\Order\Item\Base\Product\Iface $orderBaseProductItem,
95
+		\Aimeos\MShop\Product\Item\Iface $productItem, array $variantAttributeIds, $stocktype)
96 96
 	{
97 97
 		$quantity = $orderBaseProductItem->getQuantity();
98 98
 		$products = $subProductIds = $orderProducts = array();
99
-		$orderProductManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'order/base/product' );
99
+		$orderProductManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'order/base/product');
100 100
 
101
-		foreach( $productItem->getRefItems( 'product', null, 'default' ) as $item ) {
101
+		foreach ($productItem->getRefItems('product', null, 'default') as $item) {
102 102
 			$subProductIds[] = $item->getId();
103 103
 		}
104 104
 
105
-		if( count( $subProductIds ) > 0 )
105
+		if (count($subProductIds) > 0)
106 106
 		{
107
-			$productManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'product' );
107
+			$productManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'product');
108 108
 
109
-			$search = $productManager->createSearch( true );
109
+			$search = $productManager->createSearch(true);
110 110
 			$expr = array(
111
-				$search->compare( '==', 'product.id', $subProductIds ),
111
+				$search->compare('==', 'product.id', $subProductIds),
112 112
 				$search->getConditions(),
113 113
 			);
114
-			$search->setConditions( $search->combine( '&&', $expr ) );
114
+			$search->setConditions($search->combine('&&', $expr));
115 115
 
116
-			$products = $productManager->searchItems( $search, array( 'attribute', 'media', 'price', 'text' ) );
116
+			$products = $productManager->searchItems($search, array('attribute', 'media', 'price', 'text'));
117 117
 		}
118 118
 
119
-		foreach( $products as $product )
119
+		foreach ($products as $product)
120 120
 		{
121
-			$prices = $product->getRefItems( 'price', 'default', 'default' );
121
+			$prices = $product->getRefItems('price', 'default', 'default');
122 122
 
123 123
 			$orderProduct = $orderProductManager->createItem();
124
-			$orderProduct->copyFrom( $product );
125
-			$orderProduct->setStockType( $stocktype );
126
-			$orderProduct->setPrice( $this->calcPrice( $orderProduct, $prices, $quantity ) );
124
+			$orderProduct->copyFrom($product);
125
+			$orderProduct->setStockType($stocktype);
126
+			$orderProduct->setPrice($this->calcPrice($orderProduct, $prices, $quantity));
127 127
 
128 128
 			$orderProducts[] = $orderProduct;
129 129
 		}
130 130
 
131
-		$orderBaseProductItem->setProducts( $orderProducts );
131
+		$orderBaseProductItem->setProducts($orderProducts);
132 132
 	}
133 133
 }
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Basket/Standard.php 1 patch
Spacing   +120 added lines, -120 removed lines patch added patch discarded remove patch
@@ -32,11 +32,11 @@  discard block
 block discarded – undo
32 32
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Object storing the required instances for manaing databases
33 33
 	 *  connections, logger, session, etc.
34 34
 	 */
35
-	public function __construct( \Aimeos\MShop\Context\Item\Iface $context )
35
+	public function __construct(\Aimeos\MShop\Context\Item\Iface $context)
36 36
 	{
37
-		parent::__construct( $context );
37
+		parent::__construct($context);
38 38
 
39
-		$this->domainManager = \Aimeos\MShop\Factory::createManager( $context, 'order/base' );
39
+		$this->domainManager = \Aimeos\MShop\Factory::createManager($context, 'order/base');
40 40
 		$this->basket = $this->domainManager->getSession();
41 41
 
42 42
 		$this->checkLocale();
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	public function clear()
50 50
 	{
51 51
 		$this->basket = $this->domainManager->createItem();
52
-		$this->domainManager->setSession( $this->basket );
52
+		$this->domainManager->setSession($this->basket);
53 53
 	}
54 54
 
55 55
 
@@ -69,8 +69,8 @@  discard block
 block discarded – undo
69 69
 	 */
70 70
 	public function save()
71 71
 	{
72
-		if( $this->basket->isModified() ) {
73
-			$this->domainManager->setSession( $this->basket );
72
+		if ($this->basket->isModified()) {
73
+			$this->domainManager->setSession($this->basket);
74 74
 		}
75 75
 	}
76 76
 
@@ -95,38 +95,38 @@  discard block
 block discarded – undo
95 95
 	 * @param string $stocktype Unique code of the stock type to deliver the products from
96 96
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available
97 97
 	 */
98
-	public function addProduct( $prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(),
98
+	public function addProduct($prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(),
99 99
 		array $configAttributeIds = array(), array $hiddenAttributeIds = array(), array $customAttributeValues = array(),
100
-		$stocktype = 'default' )
100
+		$stocktype = 'default')
101 101
 	{
102 102
 		$context = $this->getContext();
103
-		$productManager = \Aimeos\MShop\Factory::createManager( $context, 'product' );
104
-		$productItem = $productManager->getItem( $prodid, array( 'media', 'supplier', 'price', 'product', 'text' ) );
103
+		$productManager = \Aimeos\MShop\Factory::createManager($context, 'product');
104
+		$productItem = $productManager->getItem($prodid, array('media', 'supplier', 'price', 'product', 'text'));
105 105
 
106
-		$orderBaseProductItem = \Aimeos\MShop\Factory::createManager( $context, 'order/base/product' )->createItem();
107
-		$orderBaseProductItem->copyFrom( $productItem );
108
-		$orderBaseProductItem->setQuantity( $quantity );
109
-		$orderBaseProductItem->setStockType( $stocktype );
106
+		$orderBaseProductItem = \Aimeos\MShop\Factory::createManager($context, 'order/base/product')->createItem();
107
+		$orderBaseProductItem->copyFrom($productItem);
108
+		$orderBaseProductItem->setQuantity($quantity);
109
+		$orderBaseProductItem->setStockType($stocktype);
110 110
 
111 111
 		$attr = array();
112
-		$prices = $productItem->getRefItems( 'price', 'default', 'default' );
112
+		$prices = $productItem->getRefItems('price', 'default', 'default');
113 113
 
114
-		$priceManager = \Aimeos\MShop\Factory::createManager( $context, 'price' );
115
-		$price = $priceManager->getLowestPrice( $prices, $quantity );
114
+		$priceManager = \Aimeos\MShop\Factory::createManager($context, 'price');
115
+		$price = $priceManager->getLowestPrice($prices, $quantity);
116 116
 
117
-		$attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, $configAttributeIds, 'config' ) );
118
-		$attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, $hiddenAttributeIds, 'hidden' ) );
119
-		$attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, array_keys( $customAttributeValues ), 'custom', $customAttributeValues ) );
117
+		$attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, $configAttributeIds, 'config'));
118
+		$attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, $hiddenAttributeIds, 'hidden'));
119
+		$attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, array_keys($customAttributeValues), 'custom', $customAttributeValues));
120 120
 
121 121
 		// remove product rebate of original price in favor to rebates granted for the order
122
-		$price->setRebate( '0.00' );
122
+		$price->setRebate('0.00');
123 123
 
124
-		$orderBaseProductItem->setPrice( $price );
125
-		$orderBaseProductItem->setAttributes( $attr );
124
+		$orderBaseProductItem->setPrice($price);
125
+		$orderBaseProductItem->setAttributes($attr);
126 126
 
127
-		$this->basket->addProduct( $orderBaseProductItem );
127
+		$this->basket->addProduct($orderBaseProductItem);
128 128
 
129
-		$this->domainManager->setSession( $this->basket );
129
+		$this->domainManager->setSession($this->basket);
130 130
 	}
131 131
 
132 132
 
@@ -135,18 +135,18 @@  discard block
 block discarded – undo
135 135
 	 *
136 136
 	 * @param integer $position Position number (key) of the order product item
137 137
 	 */
138
-	public function deleteProduct( $position )
138
+	public function deleteProduct($position)
139 139
 	{
140
-		$product = $this->basket->getProduct( $position );
140
+		$product = $this->basket->getProduct($position);
141 141
 
142
-		if( $product->getFlags() === \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE )
142
+		if ($product->getFlags() === \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE)
143 143
 		{
144
-			$msg = sprintf( 'Basket item at position "%1$d" cannot be deleted manually', $position );
145
-			throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg );
144
+			$msg = sprintf('Basket item at position "%1$d" cannot be deleted manually', $position);
145
+			throw new \Aimeos\Controller\Frontend\Basket\Exception($msg);
146 146
 		}
147 147
 
148
-		$this->basket->deleteProduct( $position );
149
-		$this->domainManager->setSession( $this->basket );
148
+		$this->basket->deleteProduct($position);
149
+		$this->domainManager->setSession($this->basket);
150 150
 	}
151 151
 
152 152
 
@@ -159,36 +159,36 @@  discard block
 block discarded – undo
159 159
 	 * 	The 'stock'=>false option allows adding products without being in stock.
160 160
 	 * @param string[] $configAttributeCodes Codes of the product config attributes that should be REMOVED
161 161
 	 */
162
-	public function editProduct( $position, $quantity, array $options = array(),
163
-		array $configAttributeCodes = array() )
162
+	public function editProduct($position, $quantity, array $options = array(),
163
+		array $configAttributeCodes = array())
164 164
 	{
165
-		$product = $this->basket->getProduct( $position );
165
+		$product = $this->basket->getProduct($position);
166 166
 
167
-		if( $product->getFlags() & \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE )
167
+		if ($product->getFlags() & \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE)
168 168
 		{
169
-			$msg = sprintf( 'Basket item at position "%1$d" cannot be changed', $position );
170
-			throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg );
169
+			$msg = sprintf('Basket item at position "%1$d" cannot be changed', $position);
170
+			throw new \Aimeos\Controller\Frontend\Basket\Exception($msg);
171 171
 		}
172 172
 
173
-		$product->setQuantity( $quantity );
173
+		$product->setQuantity($quantity);
174 174
 
175 175
 		$attributes = $product->getAttributes();
176
-		foreach( $attributes as $key => $attribute )
176
+		foreach ($attributes as $key => $attribute)
177 177
 		{
178
-			if( in_array( $attribute->getCode(), $configAttributeCodes ) ) {
179
-				unset( $attributes[$key] );
178
+			if (in_array($attribute->getCode(), $configAttributeCodes)) {
179
+				unset($attributes[$key]);
180 180
 			}
181 181
 		}
182
-		$product->setAttributes( $attributes );
182
+		$product->setAttributes($attributes);
183 183
 
184
-		$productItem = $this->getDomainItem( 'product', 'product.code', $product->getProductCode(), array( 'price', 'text' ) );
185
-		$prices = $productItem->getRefItems( 'price', 'default' );
186
-		$product->setPrice( $this->calcPrice( $product, $prices, $quantity ) );
184
+		$productItem = $this->getDomainItem('product', 'product.code', $product->getProductCode(), array('price', 'text'));
185
+		$prices = $productItem->getRefItems('price', 'default');
186
+		$product->setPrice($this->calcPrice($product, $prices, $quantity));
187 187
 
188
-		$this->basket->deleteProduct( $position );
189
-		$this->basket->addProduct( $product, $position );
188
+		$this->basket->deleteProduct($position);
189
+		$this->basket->addProduct($product, $position);
190 190
 
191
-		$this->domainManager->setSession( $this->basket );
191
+		$this->domainManager->setSession($this->basket);
192 192
 	}
193 193
 
194 194
 
@@ -198,50 +198,50 @@  discard block
 block discarded – undo
198 198
 	 * @param string $code Coupon code entered by the user
199 199
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid or not allowed
200 200
 	 */
201
-	public function addCoupon( $code )
201
+	public function addCoupon($code)
202 202
 	{
203
-		$manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'coupon' );
204
-		$codeManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'coupon/code' );
203
+		$manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'coupon');
204
+		$codeManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'coupon/code');
205 205
 
206 206
 
207
-		$search = $codeManager->createSearch( true );
207
+		$search = $codeManager->createSearch(true);
208 208
 		$expr = array(
209
-			$search->compare( '==', 'coupon.code.code', $code ),
209
+			$search->compare('==', 'coupon.code.code', $code),
210 210
 			$search->getConditions(),
211 211
 		);
212
-		$search->setConditions( $search->combine( '&&', $expr ) );
213
-		$search->setSlice( 0, 1 );
212
+		$search->setConditions($search->combine('&&', $expr));
213
+		$search->setSlice(0, 1);
214 214
 
215
-		$result = $codeManager->searchItems( $search );
215
+		$result = $codeManager->searchItems($search);
216 216
 
217
-		if( ( $codeItem = reset( $result ) ) === false ) {
218
-			throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Coupon code "%1$s" is invalid or not available any more', $code ) );
217
+		if (($codeItem = reset($result)) === false) {
218
+			throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Coupon code "%1$s" is invalid or not available any more', $code));
219 219
 		}
220 220
 
221 221
 
222
-		$search = $manager->createSearch( true );
222
+		$search = $manager->createSearch(true);
223 223
 		$expr = array(
224
-			$search->compare( '==', 'coupon.id', $codeItem->getParentId() ),
224
+			$search->compare('==', 'coupon.id', $codeItem->getParentId()),
225 225
 			$search->getConditions(),
226 226
 		);
227
-		$search->setConditions( $search->combine( '&&', $expr ) );
228
-		$search->setSlice( 0, 1 );
227
+		$search->setConditions($search->combine('&&', $expr));
228
+		$search->setSlice(0, 1);
229 229
 
230
-		$result = $manager->searchItems( $search );
230
+		$result = $manager->searchItems($search);
231 231
 
232
-		if( ( $item = reset( $result ) ) === false ) {
233
-			throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Coupon for code "%1$s" is not available any more', $code ) );
232
+		if (($item = reset($result)) === false) {
233
+			throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Coupon for code "%1$s" is not available any more', $code));
234 234
 		}
235 235
 
236 236
 
237
-		$provider = $manager->getProvider( $item, $code );
237
+		$provider = $manager->getProvider($item, $code);
238 238
 
239
-		if( $provider->isAvailable( $this->basket ) !== true ) {
240
-			throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Requirements for coupon code "%1$s" aren\'t met', $code ) );
239
+		if ($provider->isAvailable($this->basket) !== true) {
240
+			throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Requirements for coupon code "%1$s" aren\'t met', $code));
241 241
 		}
242 242
 
243
-		$provider->addCoupon( $this->basket );
244
-		$this->domainManager->setSession( $this->basket );
243
+		$provider->addCoupon($this->basket);
244
+		$this->domainManager->setSession($this->basket);
245 245
 	}
246 246
 
247 247
 
@@ -251,22 +251,22 @@  discard block
 block discarded – undo
251 251
 	 * @param string $code Coupon code entered by the user
252 252
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid
253 253
 	 */
254
-	public function deleteCoupon( $code )
254
+	public function deleteCoupon($code)
255 255
 	{
256
-		$manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'coupon' );
256
+		$manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'coupon');
257 257
 
258 258
 		$search = $manager->createSearch();
259
-		$search->setConditions( $search->compare( '==', 'coupon.code.code', $code ) );
260
-		$search->setSlice( 0, 1 );
259
+		$search->setConditions($search->compare('==', 'coupon.code.code', $code));
260
+		$search->setSlice(0, 1);
261 261
 
262
-		$result = $manager->searchItems( $search );
262
+		$result = $manager->searchItems($search);
263 263
 
264
-		if( ( $item = reset( $result ) ) === false ) {
265
-			throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Coupon code "%1$s" is invalid', $code ) );
264
+		if (($item = reset($result)) === false) {
265
+			throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Coupon code "%1$s" is invalid', $code));
266 266
 		}
267 267
 
268
-		$manager->getProvider( $item, $code )->deleteCoupon( $this->basket );
269
-		$this->domainManager->setSession( $this->basket );
268
+		$manager->getProvider($item, $code)->deleteCoupon($this->basket);
269
+		$this->domainManager->setSession($this->basket);
270 270
 	}
271 271
 
272 272
 
@@ -278,31 +278,31 @@  discard block
 block discarded – undo
278 278
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception If the billing or delivery address is not of any required type of
279 279
 	 * 	if one of the keys is invalid when using an array with key/value pairs
280 280
 	 */
281
-	public function setAddress( $type, $value )
281
+	public function setAddress($type, $value)
282 282
 	{
283
-		$address = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'order/base/address' )->createItem();
284
-		$address->setType( $type );
283
+		$address = \Aimeos\MShop\Factory::createManager($this->getContext(), 'order/base/address')->createItem();
284
+		$address->setType($type);
285 285
 
286
-		if( $value instanceof \Aimeos\MShop\Common\Item\Address\Iface )
286
+		if ($value instanceof \Aimeos\MShop\Common\Item\Address\Iface)
287 287
 		{
288
-			$address->copyFrom( $value );
289
-			$this->basket->setAddress( $address, $type );
288
+			$address->copyFrom($value);
289
+			$this->basket->setAddress($address, $type);
290 290
 		}
291
-		else if( is_array( $value ) )
291
+		else if (is_array($value))
292 292
 		{
293
-			$this->setAddressFromArray( $address, $value );
294
-			$this->basket->setAddress( $address, $type );
293
+			$this->setAddressFromArray($address, $value);
294
+			$this->basket->setAddress($address, $type);
295 295
 		}
296
-		else if( $value === null )
296
+		else if ($value === null)
297 297
 		{
298
-			$this->basket->deleteAddress( $type );
298
+			$this->basket->deleteAddress($type);
299 299
 		}
300 300
 		else
301 301
 		{
302
-			throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Invalid value for address type "%1$s"', $type ) );
302
+			throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Invalid value for address type "%1$s"', $type));
303 303
 		}
304 304
 
305
-		$this->domainManager->setSession( $this->basket );
305
+		$this->domainManager->setSession($this->basket);
306 306
 	}
307 307
 
308 308
 
@@ -315,43 +315,43 @@  discard block
 block discarded – undo
315 315
 	 * 	entered by the customer when choosing one of the delivery or payment options
316 316
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached
317 317
 	 */
318
-	public function setService( $type, $id, array $attributes = array() )
318
+	public function setService($type, $id, array $attributes = array())
319 319
 	{
320 320
 		$context = $this->getContext();
321 321
 
322
-		$serviceManager = \Aimeos\MShop\Factory::createManager( $context, 'service' );
323
-		$serviceItem = $this->getDomainItem( 'service', 'service.id', $id, array( 'media', 'price', 'text' ) );
322
+		$serviceManager = \Aimeos\MShop\Factory::createManager($context, 'service');
323
+		$serviceItem = $this->getDomainItem('service', 'service.id', $id, array('media', 'price', 'text'));
324 324
 
325
-		$provider = $serviceManager->getProvider( $serviceItem );
326
-		$result = $provider->checkConfigFE( $attributes );
327
-		$unknown = array_diff_key( $attributes, $result );
325
+		$provider = $serviceManager->getProvider($serviceItem);
326
+		$result = $provider->checkConfigFE($attributes);
327
+		$unknown = array_diff_key($attributes, $result);
328 328
 
329
-		if( count( $unknown ) > 0 )
329
+		if (count($unknown) > 0)
330 330
 		{
331
-			$msg = sprintf( 'Unknown attributes "%1$s"', implode( '","', array_keys( $unknown ) ) );
332
-			throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg );
331
+			$msg = sprintf('Unknown attributes "%1$s"', implode('","', array_keys($unknown)));
332
+			throw new \Aimeos\Controller\Frontend\Basket\Exception($msg);
333 333
 		}
334 334
 
335
-		foreach( $result as $key => $value )
335
+		foreach ($result as $key => $value)
336 336
 		{
337
-			if( $value !== null ) {
338
-				throw new \Aimeos\Controller\Frontend\Basket\Exception( $value );
337
+			if ($value !== null) {
338
+				throw new \Aimeos\Controller\Frontend\Basket\Exception($value);
339 339
 			}
340 340
 		}
341 341
 
342
-		$orderBaseServiceManager = \Aimeos\MShop\Factory::createManager( $context, 'order/base/service' );
342
+		$orderBaseServiceManager = \Aimeos\MShop\Factory::createManager($context, 'order/base/service');
343 343
 		$orderServiceItem = $orderBaseServiceManager->createItem();
344
-		$orderServiceItem->copyFrom( $serviceItem );
344
+		$orderServiceItem->copyFrom($serviceItem);
345 345
 
346
-		$price = $provider->calcPrice( $this->basket );
346
+		$price = $provider->calcPrice($this->basket);
347 347
 		// remove service rebate of original price
348
-		$price->setRebate( '0.00' );
349
-		$orderServiceItem->setPrice( $price );
348
+		$price->setRebate('0.00');
349
+		$orderServiceItem->setPrice($price);
350 350
 
351
-		$provider->setConfigFE( $orderServiceItem, $attributes );
351
+		$provider->setConfigFE($orderServiceItem, $attributes);
352 352
 
353
-		$this->basket->setService( $orderServiceItem, $type );
354
-		$this->domainManager->setSession( $this->basket );
353
+		$this->basket->setService($orderServiceItem, $type);
354
+		$this->domainManager->setSession($this->basket);
355 355
 	}
356 356
 
357 357
 
@@ -363,18 +363,18 @@  discard block
 block discarded – undo
363 363
 	 * 	an address item.
364 364
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception
365 365
 	 */
366
-	protected function setAddressFromArray( \Aimeos\MShop\Order\Item\Base\Address\Iface $address, array $map )
366
+	protected function setAddressFromArray(\Aimeos\MShop\Order\Item\Base\Address\Iface $address, array $map)
367 367
 	{
368
-		foreach( $map as $key => $value ) {
369
-			$map[$key] = strip_tags( $value ); // prevent XSS
368
+		foreach ($map as $key => $value) {
369
+			$map[$key] = strip_tags($value); // prevent XSS
370 370
 		}
371 371
 
372
-		$errors = $address->fromArray( $map );
372
+		$errors = $address->fromArray($map);
373 373
 
374
-		if( count( $errors ) > 0 )
374
+		if (count($errors) > 0)
375 375
 		{
376
-			$msg = sprintf( 'Invalid address properties, please check your input' );
377
-			throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg, 0, null, $errors );
376
+			$msg = sprintf('Invalid address properties, please check your input');
377
+			throw new \Aimeos\Controller\Frontend\Basket\Exception($msg, 0, null, $errors);
378 378
 		}
379 379
 	}
380 380
 }
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Basket/Factory.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 * @param string|null $name Name of the controller implementaton (default: "Standard")
30 30
 	 * @return \Aimeos\Controller\Frontend\Iface Controller object
31 31
 	 */
32
-	public static function createController( \Aimeos\MShop\Context\Item\Iface $context, $name = null )
32
+	public static function createController(\Aimeos\MShop\Context\Item\Iface $context, $name = null)
33 33
 	{
34 34
 		/** controller/frontend/basket/name
35 35
 		 * Class name of the used basket frontend controller implementation
@@ -64,20 +64,20 @@  discard block
 block discarded – undo
64 64
 		 * @since 2014.03
65 65
 		 * @category Developer
66 66
 		 */
67
-		if( $name === null ) {
68
-			$name = $context->getConfig()->get( 'controller/frontend/basket/name', 'Standard' );
67
+		if ($name === null) {
68
+			$name = $context->getConfig()->get('controller/frontend/basket/name', 'Standard');
69 69
 		}
70 70
 
71
-		if( ctype_alnum( $name ) === false )
71
+		if (ctype_alnum($name) === false)
72 72
 		{
73
-			$classname = is_string( $name ) ? '\\Aimeos\\Controller\\Frontend\\Basket\\' . $name : '<not a string>';
74
-			throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
73
+			$classname = is_string($name) ? '\\Aimeos\\Controller\\Frontend\\Basket\\' . $name : '<not a string>';
74
+			throw new \Aimeos\Controller\Frontend\Exception(sprintf('Invalid characters in class name "%1$s"', $classname));
75 75
 		}
76 76
 
77 77
 		$iface = '\\Aimeos\\Controller\\Frontend\\Basket\\Iface';
78 78
 		$classname = '\\Aimeos\\Controller\\Frontend\\Basket\\' . $name;
79 79
 
80
-		$manager = self::createControllerBase( $context, $classname, $iface );
80
+		$manager = self::createControllerBase($context, $classname, $iface);
81 81
 
82 82
 		/** controller/frontend/basket/decorators/excludes
83 83
 		 * Excludes decorators added by the "common" option from the basket frontend controllers
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 		 * @see controller/frontend/basket/decorators/excludes
154 154
 		 * @see controller/frontend/basket/decorators/global
155 155
 		 */
156
-		return self::addControllerDecorators( $context, $manager, 'basket' );
156
+		return self::addControllerDecorators($context, $manager, 'basket');
157 157
 	}
158 158
 
159 159
 }
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Order/Decorator/Base.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	 * @param \Aimeos\Controller\Frontend\Iface $controller Controller object
31 31
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context object with required objects
32 32
 	 */
33
-	public function __construct( \Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context )
33
+	public function __construct(\Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context)
34 34
 	{
35 35
 		$this->context = $context;
36 36
 		$this->controller = $controller;
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
 	 * @return mixed Returns the value of the called method
46 46
 	 * @throws \Aimeos\Controller\Frontend\Exception If method call failed
47 47
 	 */
48
-	public function __call( $name, array $param )
48
+	public function __call($name, array $param)
49 49
 	{
50
-		return call_user_func_array( array( $this->controller, $name ), $param );
50
+		return call_user_func_array(array($this->controller, $name), $param);
51 51
 	}
52 52
 
53 53
 
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
 	 * @param \Aimeos\MShop\Order\Item\Base\Iface $basket Basket object to be stored
62 62
 	 * @return \Aimeos\MShop\Order\Item\Iface Order item that belongs to the stored basket
63 63
 	 */
64
-	public function store( \Aimeos\MShop\Order\Item\Base\Iface $basket )
64
+	public function store(\Aimeos\MShop\Order\Item\Base\Iface $basket)
65 65
 	{
66
-		return $this->getController()->store( $basket );
66
+		return $this->getController()->store($basket);
67 67
 	}
68 68
 
69 69
 
@@ -86,9 +86,9 @@  discard block
 block discarded – undo
86 86
 	 * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object
87 87
 	 * @return void
88 88
 	 */
89
-	public function block( \Aimeos\MShop\Order\Item\Iface $orderItem )
89
+	public function block(\Aimeos\MShop\Order\Item\Iface $orderItem)
90 90
 	{
91
-		$this->getController()->block( $orderItem );
91
+		$this->getController()->block($orderItem);
92 92
 	}
93 93
 
94 94
 
@@ -111,9 +111,9 @@  discard block
 block discarded – undo
111 111
 	 * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object
112 112
 	 * @return void
113 113
 	 */
114
-	public function unblock( \Aimeos\MShop\Order\Item\Iface $orderItem )
114
+	public function unblock(\Aimeos\MShop\Order\Item\Iface $orderItem)
115 115
 	{
116
-		$this->getController()->unblock( $orderItem );
116
+		$this->getController()->unblock($orderItem);
117 117
 	}
118 118
 
119 119
 
@@ -132,9 +132,9 @@  discard block
 block discarded – undo
132 132
 	 * @param \Aimeos\MShop\Order\Item\Iface $orderItem Order item object
133 133
 	 * @return void
134 134
 	 */
135
-	public function update( \Aimeos\MShop\Order\Item\Iface $orderItem )
135
+	public function update(\Aimeos\MShop\Order\Item\Iface $orderItem)
136 136
 	{
137
-		$this->getController()->update( $orderItem );
137
+		$this->getController()->update($orderItem);
138 138
 	}
139 139
 
140 140
 
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Order/Factory.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 * @param string|null $name Name of the controller implementaton (default: "Standard")
30 30
 	 * @return \Aimeos\Controller\Frontend\Iface Controller object
31 31
 	 */
32
-	public static function createController( \Aimeos\MShop\Context\Item\Iface $context, $name = null )
32
+	public static function createController(\Aimeos\MShop\Context\Item\Iface $context, $name = null)
33 33
 	{
34 34
 		/** controller/frontend/order/name
35 35
 		 * Class name of the used order frontend controller implementation
@@ -64,19 +64,19 @@  discard block
 block discarded – undo
64 64
 		 * @since 2014.03
65 65
 		 * @category Developer
66 66
 		 */
67
-		if( $name === null ) {
68
-			$name = $context->getConfig()->get( 'controller/frontend/order/name', 'Standard' );
67
+		if ($name === null) {
68
+			$name = $context->getConfig()->get('controller/frontend/order/name', 'Standard');
69 69
 		}
70 70
 
71
-		if( ctype_alnum( $name ) === false ) {
72
-			$classname = is_string( $name ) ? '\\Aimeos\\Controller\\Frontend\\Order\\' . $name : '<not a string>';
73
-			throw new \Aimeos\Controller\Frontend\Exception( sprintf( 'Invalid characters in class name "%1$s"', $classname ) );
71
+		if (ctype_alnum($name) === false) {
72
+			$classname = is_string($name) ? '\\Aimeos\\Controller\\Frontend\\Order\\' . $name : '<not a string>';
73
+			throw new \Aimeos\Controller\Frontend\Exception(sprintf('Invalid characters in class name "%1$s"', $classname));
74 74
 		}
75 75
 
76 76
 		$iface = '\\Aimeos\\Controller\\Frontend\\Order\\Iface';
77 77
 		$classname = '\\Aimeos\\Controller\\Frontend\\Order\\' . $name;
78 78
 
79
-		$manager = self::createControllerBase( $context, $classname, $iface );
79
+		$manager = self::createControllerBase($context, $classname, $iface);
80 80
 
81 81
 		/** controller/frontend/order/decorators/excludes
82 82
 		 * Excludes decorators added by the "common" option from the order frontend controllers
@@ -152,6 +152,6 @@  discard block
 block discarded – undo
152 152
 		 * @see controller/frontend/order/decorators/excludes
153 153
 		 * @see controller/frontend/order/decorators/global
154 154
 		 */
155
-		return self::addControllerDecorators( $context, $manager, 'order' );
155
+		return self::addControllerDecorators($context, $manager, 'order');
156 156
 	}
157 157
 }
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Catalog/Decorator/Base.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	 * @param \Aimeos\Controller\Frontend\Iface $controller Controller object
31 31
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context object with required objects
32 32
 	 */
33
-	public function __construct( \Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context )
33
+	public function __construct(\Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context)
34 34
 	{
35 35
 		$this->context = $context;
36 36
 		$this->controller = $controller;
@@ -45,9 +45,9 @@  discard block
 block discarded – undo
45 45
 	 * @return mixed Returns the value of the called method
46 46
 	 * @throws \Aimeos\Controller\Frontend\Exception If method call failed
47 47
 	 */
48
-	public function __call( $name, array $param )
48
+	public function __call($name, array $param)
49 49
 	{
50
-		return call_user_func_array( array( $this->controller, $name ), $param );
50
+		return call_user_func_array(array($this->controller, $name), $param);
51 51
 	}
52 52
 
53 53
 
@@ -57,9 +57,9 @@  discard block
 block discarded – undo
57 57
 	 * @param string $name Name of the manager
58 58
 	 * @return \Aimeos\MShop\Common\Manager\Iface Manager object
59 59
 	 */
60
-	public function createManager( $name )
60
+	public function createManager($name)
61 61
 	{
62
-		return $this->getController()->createManager( $name );
62
+		return $this->getController()->createManager($name);
63 63
 	}
64 64
 
65 65
 
@@ -84,9 +84,9 @@  discard block
 block discarded – undo
84 84
 	 * @return array Associative list of items implementing \Aimeos\MShop\Catalog\Item\Iface with their IDs as keys
85 85
 	 * @since 2015.08
86 86
 	 */
87
-	public function getCatalogPath( $id, array $domains = array( 'text', 'media' ) )
87
+	public function getCatalogPath($id, array $domains = array('text', 'media'))
88 88
 	{
89
-		return $this->getController()->getCatalogPath( $id, $domains );
89
+		return $this->getController()->getCatalogPath($id, $domains);
90 90
 	}
91 91
 
92 92
 
@@ -101,10 +101,10 @@  discard block
 block discarded – undo
101 101
 	 * @return \Aimeos\MShop\Catalog\Item\Iface Catalog node, maybe with children depending on the level constant
102 102
 	 * @since 2015.08
103 103
 	 */
104
-	public function getCatalogTree( $id = null, array $domains = array( 'text', 'media' ),
105
-		$level = \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE, \Aimeos\MW\Criteria\Iface $search = null )
104
+	public function getCatalogTree($id = null, array $domains = array('text', 'media'),
105
+		$level = \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE, \Aimeos\MW\Criteria\Iface $search = null)
106 106
 	{
107
-		return $this->getController()->getCatalogTree( $id, $domains, $level, $search );
107
+		return $this->getController()->getCatalogTree($id, $domains, $level, $search);
108 108
 	}
109 109
 
110 110
 
@@ -116,9 +116,9 @@  discard block
 block discarded – undo
116 116
 	 * @return array Associative list of key values as key and the product count for this key as value
117 117
 	 * @since 2015.08
118 118
 	 */
119
-	public function aggregateIndex( \Aimeos\MW\Criteria\Iface $filter, $key )
119
+	public function aggregateIndex(\Aimeos\MW\Criteria\Iface $filter, $key)
120 120
 	{
121
-		return $this->getController()->aggregateIndex( $filter, $key );
121
+		return $this->getController()->aggregateIndex($filter, $key);
122 122
 	}
123 123
 
124 124
 
@@ -130,9 +130,9 @@  discard block
 block discarded – undo
130 130
 	 * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching
131 131
 	 * @since 2015.08
132 132
 	 */
133
-	public function addIndexFilterCategory( \Aimeos\MW\Criteria\Iface $search, $catid )
133
+	public function addIndexFilterCategory(\Aimeos\MW\Criteria\Iface $search, $catid)
134 134
 	{
135
-		return $this->getController()->addIndexFilterCategory( $search, $catid );
135
+		return $this->getController()->addIndexFilterCategory($search, $catid);
136 136
 	}
137 137
 
138 138
 
@@ -145,9 +145,9 @@  discard block
 block discarded – undo
145 145
 	 * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching
146 146
 	 * @since 2015.08
147 147
 	 */
148
-	public function addIndexFilterText( \Aimeos\MW\Criteria\Iface $search, $input, $listtype = 'default' )
148
+	public function addIndexFilterText(\Aimeos\MW\Criteria\Iface $search, $input, $listtype = 'default')
149 149
 	{
150
-		return $this->getController()->addIndexFilterText( $search, $input, $listtype );
150
+		return $this->getController()->addIndexFilterText($search, $input, $listtype);
151 151
 	}
152 152
 
153 153
 
@@ -162,9 +162,9 @@  discard block
 block discarded – undo
162 162
 	 * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching
163 163
 	 * @since 2015.08
164 164
 	 */
165
-	public function createIndexFilter( $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default' )
165
+	public function createIndexFilter($sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default')
166 166
 	{
167
-		return $this->getController()->createIndexFilter( $sort, $direction, $start, $size, $listtype );
167
+		return $this->getController()->createIndexFilter($sort, $direction, $start, $size, $listtype);
168 168
 	}
169 169
 
170 170
 
@@ -180,9 +180,9 @@  discard block
 block discarded – undo
180 180
 	 * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching
181 181
 	 * @since 2015.08
182 182
 	 */
183
-	public function createIndexFilterCategory( $catid, $sort = 'position', $direction = 'asc', $start = 0, $size = 100, $listtype = 'default' )
183
+	public function createIndexFilterCategory($catid, $sort = 'position', $direction = 'asc', $start = 0, $size = 100, $listtype = 'default')
184 184
 	{
185
-		return $this->getController()->createIndexFilter( $catid, $sort, $direction, $start, $size, $listtype );
185
+		return $this->getController()->createIndexFilter($catid, $sort, $direction, $start, $size, $listtype);
186 186
 	}
187 187
 
188 188
 
@@ -198,9 +198,9 @@  discard block
 block discarded – undo
198 198
 	 * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching
199 199
 	 * @since 2015.08
200 200
 	 */
201
-	public function createIndexFilterText( $input, $sort = 'relevance', $direction = 'asc', $start = 0, $size = 100, $listtype = 'default' )
201
+	public function createIndexFilterText($input, $sort = 'relevance', $direction = 'asc', $start = 0, $size = 100, $listtype = 'default')
202 202
 	{
203
-		return $this->getController()->createIndexFilter( $input, $sort, $direction, $start, $size, $listtype );
203
+		return $this->getController()->createIndexFilter($input, $sort, $direction, $start, $size, $listtype);
204 204
 	}
205 205
 
206 206
 
@@ -213,9 +213,9 @@  discard block
 block discarded – undo
213 213
 	 * @return array Ordered list of product items implementing \Aimeos\MShop\Product\Item\Iface
214 214
 	 * @since 2015.08
215 215
 	 */
216
-	public function getIndexItems( \Aimeos\MW\Criteria\Iface $filter, array $domains = array( 'media', 'price', 'text' ), &$total = null )
216
+	public function getIndexItems(\Aimeos\MW\Criteria\Iface $filter, array $domains = array('media', 'price', 'text'), &$total = null)
217 217
 	{
218
-		return $this->getController()->getIndexItems( $filter, $domains, $total );
218
+		return $this->getController()->getIndexItems($filter, $domains, $total);
219 219
 	}
220 220
 
221 221
 
@@ -227,9 +227,9 @@  discard block
 block discarded – undo
227 227
 	 * @return array List of product items implementing \Aimeos\MShop\Product\Item\Iface
228 228
 	 * @since 2015.08
229 229
 	 */
230
-	public function getProductItems( array $ids, array $domains = array( 'media', 'price', 'text' ) )
230
+	public function getProductItems(array $ids, array $domains = array('media', 'price', 'text'))
231 231
 	{
232
-		return $this->getController()->getProductItems( $ids, $domains );
232
+		return $this->getController()->getProductItems($ids, $domains);
233 233
 	}
234 234
 
235 235
 
@@ -245,9 +245,9 @@  discard block
 block discarded – undo
245 245
 	 * @param string $type Type of the text like "name", "short", "long", etc.
246 246
 	 * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching
247 247
 	 */
248
-	public function createTextFilter( $input, $sort = null, $direction = 'desc', $start = 0, $size = 25, $listtype = 'default', $type = 'name' )
248
+	public function createTextFilter($input, $sort = null, $direction = 'desc', $start = 0, $size = 25, $listtype = 'default', $type = 'name')
249 249
 	{
250
-		return $this->getController()->createTextFilter( $input, $sort, $direction, $start, $size, $listtype, $type );
250
+		return $this->getController()->createTextFilter($input, $sort, $direction, $start, $size, $listtype, $type);
251 251
 	}
252 252
 
253 253
 
@@ -257,9 +257,9 @@  discard block
 block discarded – undo
257 257
 	 * @param \Aimeos\MW\Criteria\Iface $filter Critera object which contains the filter conditions
258 258
 	 * @return array Associative list of the product ID as key and the product text as value
259 259
 	 */
260
-	public function getTextList( \Aimeos\MW\Criteria\Iface $filter )
260
+	public function getTextList(\Aimeos\MW\Criteria\Iface $filter)
261 261
 	{
262
-		return $this->getController()->getTextList( $filter );
262
+		return $this->getController()->getTextList($filter);
263 263
 	}
264 264
 
265 265
 
Please login to merge, or discard this patch.