@@ -33,11 +33,11 @@ discard block |
||
| 33 | 33 | * @param \Aimeos\MShop\Context\Item\Iface $context Object storing the required instances for manaing databases |
| 34 | 34 | * connections, logger, session, etc. |
| 35 | 35 | */ |
| 36 | - public function __construct( \Aimeos\MShop\Context\Item\Iface $context ) |
|
| 36 | + public function __construct(\Aimeos\MShop\Context\Item\Iface $context) |
|
| 37 | 37 | { |
| 38 | - parent::__construct( $context ); |
|
| 38 | + parent::__construct($context); |
|
| 39 | 39 | |
| 40 | - $this->domainManager = \Aimeos\MShop\Factory::createManager( $context, 'order/base' ); |
|
| 40 | + $this->domainManager = \Aimeos\MShop\Factory::createManager($context, 'order/base'); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | public function clear() |
| 50 | 50 | { |
| 51 | 51 | $this->baskets[$this->type] = $this->domainManager->createItem(); |
| 52 | - $this->domainManager->setSession( $this->baskets[$this->type], $this->type ); |
|
| 52 | + $this->domainManager->setSession($this->baskets[$this->type], $this->type); |
|
| 53 | 53 | |
| 54 | 54 | return $this; |
| 55 | 55 | } |
@@ -62,10 +62,10 @@ discard block |
||
| 62 | 62 | */ |
| 63 | 63 | public function get() |
| 64 | 64 | { |
| 65 | - if( !isset( $this->baskets[$this->type] ) ) |
|
| 65 | + if (!isset($this->baskets[$this->type])) |
|
| 66 | 66 | { |
| 67 | - $this->baskets[$this->type] = $this->domainManager->getSession( $this->type ); |
|
| 68 | - $this->checkLocale( $this->type ); |
|
| 67 | + $this->baskets[$this->type] = $this->domainManager->getSession($this->type); |
|
| 68 | + $this->checkLocale($this->type); |
|
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | return $this->baskets[$this->type]; |
@@ -79,8 +79,8 @@ discard block |
||
| 79 | 79 | */ |
| 80 | 80 | public function save() |
| 81 | 81 | { |
| 82 | - if( isset( $this->baskets[$this->type] ) && $this->baskets[$this->type]->isModified() ) { |
|
| 83 | - $this->domainManager->setSession( $this->baskets[$this->type], $this->type ); |
|
| 82 | + if (isset($this->baskets[$this->type]) && $this->baskets[$this->type]->isModified()) { |
|
| 83 | + $this->domainManager->setSession($this->baskets[$this->type], $this->type); |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | return $this; |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | * @param string $type Basket type |
| 94 | 94 | * @return \Aimeos\Controller\Frontend\Basket\Iface Basket frontend object |
| 95 | 95 | */ |
| 96 | - public function setType( $type ) |
|
| 96 | + public function setType($type) |
|
| 97 | 97 | { |
| 98 | 98 | $this->type = $type; |
| 99 | 99 | return $this; |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | $basket = $this->get()->finish(); |
| 111 | 111 | |
| 112 | 112 | $this->domainManager->begin(); |
| 113 | - $this->domainManager->store( $basket ); |
|
| 113 | + $this->domainManager->store($basket); |
|
| 114 | 114 | $this->domainManager->commit(); |
| 115 | 115 | |
| 116 | 116 | return $basket; |
@@ -125,9 +125,9 @@ discard block |
||
| 125 | 125 | * @param boolean $default True to add default criteria (user logged in), false if not |
| 126 | 126 | * @return \Aimeos\MShop\Order\Item\Base\Iface Order base object including the given parts |
| 127 | 127 | */ |
| 128 | - public function load( $id, $parts = \Aimeos\MShop\Order\Manager\Base\Base::PARTS_ALL, $default = true ) |
|
| 128 | + public function load($id, $parts = \Aimeos\MShop\Order\Manager\Base\Base::PARTS_ALL, $default = true) |
|
| 129 | 129 | { |
| 130 | - return $this->domainManager->load( $id, $parts, false, $default ); |
|
| 130 | + return $this->domainManager->load($id, $parts, false, $default); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | |
@@ -147,36 +147,36 @@ discard block |
||
| 147 | 147 | * @param string $stocktype Unique code of the stock type to deliver the products from |
| 148 | 148 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available |
| 149 | 149 | */ |
| 150 | - public function addProduct( $prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(), |
|
| 150 | + public function addProduct($prodid, $quantity = 1, array $options = array(), array $variantAttributeIds = array(), |
|
| 151 | 151 | array $configAttributeIds = array(), array $hiddenAttributeIds = array(), array $customAttributeValues = array(), |
| 152 | - $stocktype = 'default' ) |
|
| 152 | + $stocktype = 'default') |
|
| 153 | 153 | { |
| 154 | 154 | $context = $this->getContext(); |
| 155 | - $productManager = \Aimeos\MShop\Factory::createManager( $context, 'product' ); |
|
| 156 | - $productItem = $productManager->getItem( $prodid, array( 'media', 'supplier', 'price', 'product', 'text' ), true ); |
|
| 155 | + $productManager = \Aimeos\MShop\Factory::createManager($context, 'product'); |
|
| 156 | + $productItem = $productManager->getItem($prodid, array('media', 'supplier', 'price', 'product', 'text'), true); |
|
| 157 | 157 | |
| 158 | - $orderBaseProductItem = \Aimeos\MShop\Factory::createManager( $context, 'order/base/product' )->createItem(); |
|
| 159 | - $orderBaseProductItem->copyFrom( $productItem ); |
|
| 160 | - $orderBaseProductItem->setQuantity( $quantity ); |
|
| 161 | - $orderBaseProductItem->setStockType( $stocktype ); |
|
| 158 | + $orderBaseProductItem = \Aimeos\MShop\Factory::createManager($context, 'order/base/product')->createItem(); |
|
| 159 | + $orderBaseProductItem->copyFrom($productItem); |
|
| 160 | + $orderBaseProductItem->setQuantity($quantity); |
|
| 161 | + $orderBaseProductItem->setStockType($stocktype); |
|
| 162 | 162 | |
| 163 | 163 | $attr = array(); |
| 164 | - $prices = $productItem->getRefItems( 'price', 'default', 'default' ); |
|
| 164 | + $prices = $productItem->getRefItems('price', 'default', 'default'); |
|
| 165 | 165 | |
| 166 | - $priceManager = \Aimeos\MShop\Factory::createManager( $context, 'price' ); |
|
| 167 | - $price = $priceManager->getLowestPrice( $prices, $quantity ); |
|
| 166 | + $priceManager = \Aimeos\MShop\Factory::createManager($context, 'price'); |
|
| 167 | + $price = $priceManager->getLowestPrice($prices, $quantity); |
|
| 168 | 168 | |
| 169 | - $attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, $configAttributeIds, 'config' ) ); |
|
| 170 | - $attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, $hiddenAttributeIds, 'hidden' ) ); |
|
| 171 | - $attr = array_merge( $attr, $this->createOrderProductAttributes( $price, $prodid, $quantity, array_keys( $customAttributeValues ), 'custom', $customAttributeValues ) ); |
|
| 169 | + $attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, $configAttributeIds, 'config')); |
|
| 170 | + $attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, $hiddenAttributeIds, 'hidden')); |
|
| 171 | + $attr = array_merge($attr, $this->createOrderProductAttributes($price, $prodid, $quantity, array_keys($customAttributeValues), 'custom', $customAttributeValues)); |
|
| 172 | 172 | |
| 173 | 173 | // remove product rebate of original price in favor to rebates granted for the order |
| 174 | - $price->setRebate( '0.00' ); |
|
| 174 | + $price->setRebate('0.00'); |
|
| 175 | 175 | |
| 176 | - $orderBaseProductItem->setPrice( $price ); |
|
| 177 | - $orderBaseProductItem->setAttributes( $attr ); |
|
| 176 | + $orderBaseProductItem->setPrice($price); |
|
| 177 | + $orderBaseProductItem->setAttributes($attr); |
|
| 178 | 178 | |
| 179 | - $this->get()->addProduct( $orderBaseProductItem ); |
|
| 179 | + $this->get()->addProduct($orderBaseProductItem); |
|
| 180 | 180 | $this->save(); |
| 181 | 181 | } |
| 182 | 182 | |
@@ -186,17 +186,17 @@ discard block |
||
| 186 | 186 | * |
| 187 | 187 | * @param integer $position Position number (key) of the order product item |
| 188 | 188 | */ |
| 189 | - public function deleteProduct( $position ) |
|
| 189 | + public function deleteProduct($position) |
|
| 190 | 190 | { |
| 191 | - $product = $this->get()->getProduct( $position ); |
|
| 191 | + $product = $this->get()->getProduct($position); |
|
| 192 | 192 | |
| 193 | - if( $product->getFlags() === \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE ) |
|
| 193 | + if ($product->getFlags() === \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE) |
|
| 194 | 194 | { |
| 195 | - $msg = sprintf( 'Basket item at position "%1$d" cannot be deleted manually', $position ); |
|
| 196 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 195 | + $msg = sprintf('Basket item at position "%1$d" cannot be deleted manually', $position); |
|
| 196 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 197 | 197 | } |
| 198 | 198 | |
| 199 | - $this->get()->deleteProduct( $position ); |
|
| 199 | + $this->get()->deleteProduct($position); |
|
| 200 | 200 | $this->save(); |
| 201 | 201 | } |
| 202 | 202 | |
@@ -210,34 +210,34 @@ discard block |
||
| 210 | 210 | * The 'stock'=>false option allows adding products without being in stock. |
| 211 | 211 | * @param string[] $configAttributeCodes Codes of the product config attributes that should be REMOVED |
| 212 | 212 | */ |
| 213 | - public function editProduct( $position, $quantity, array $options = array(), |
|
| 214 | - array $configAttributeCodes = array() ) |
|
| 213 | + public function editProduct($position, $quantity, array $options = array(), |
|
| 214 | + array $configAttributeCodes = array()) |
|
| 215 | 215 | { |
| 216 | - $product = $this->get()->getProduct( $position ); |
|
| 216 | + $product = $this->get()->getProduct($position); |
|
| 217 | 217 | |
| 218 | - if( $product->getFlags() & \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE ) |
|
| 218 | + if ($product->getFlags() & \Aimeos\MShop\Order\Item\Base\Product\Base::FLAG_IMMUTABLE) |
|
| 219 | 219 | { |
| 220 | - $msg = sprintf( 'Basket item at position "%1$d" cannot be changed', $position ); |
|
| 221 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 220 | + $msg = sprintf('Basket item at position "%1$d" cannot be changed', $position); |
|
| 221 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 222 | 222 | } |
| 223 | 223 | |
| 224 | - $product->setQuantity( $quantity ); |
|
| 224 | + $product->setQuantity($quantity); |
|
| 225 | 225 | |
| 226 | 226 | $attributes = $product->getAttributes(); |
| 227 | - foreach( $attributes as $key => $attribute ) |
|
| 227 | + foreach ($attributes as $key => $attribute) |
|
| 228 | 228 | { |
| 229 | - if( in_array( $attribute->getCode(), $configAttributeCodes ) ) { |
|
| 230 | - unset( $attributes[$key] ); |
|
| 229 | + if (in_array($attribute->getCode(), $configAttributeCodes)) { |
|
| 230 | + unset($attributes[$key]); |
|
| 231 | 231 | } |
| 232 | 232 | } |
| 233 | - $product->setAttributes( $attributes ); |
|
| 233 | + $product->setAttributes($attributes); |
|
| 234 | 234 | |
| 235 | - $productItem = $this->getDomainItem( 'product', 'product.code', $product->getProductCode(), array( 'price', 'text' ) ); |
|
| 236 | - $prices = $productItem->getRefItems( 'price', 'default' ); |
|
| 237 | - $product->setPrice( $this->calcPrice( $product, $prices, $quantity ) ); |
|
| 235 | + $productItem = $this->getDomainItem('product', 'product.code', $product->getProductCode(), array('price', 'text')); |
|
| 236 | + $prices = $productItem->getRefItems('price', 'default'); |
|
| 237 | + $product->setPrice($this->calcPrice($product, $prices, $quantity)); |
|
| 238 | 238 | |
| 239 | - $this->get()->deleteProduct( $position ); |
|
| 240 | - $this->get()->addProduct( $product, $position ); |
|
| 239 | + $this->get()->deleteProduct($position); |
|
| 240 | + $this->get()->addProduct($product, $position); |
|
| 241 | 241 | |
| 242 | 242 | $this->save(); |
| 243 | 243 | } |
@@ -249,49 +249,49 @@ discard block |
||
| 249 | 249 | * @param string $code Coupon code entered by the user |
| 250 | 250 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid or not allowed |
| 251 | 251 | */ |
| 252 | - public function addCoupon( $code ) |
|
| 252 | + public function addCoupon($code) |
|
| 253 | 253 | { |
| 254 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'coupon' ); |
|
| 255 | - $codeManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'coupon/code' ); |
|
| 254 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'coupon'); |
|
| 255 | + $codeManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'coupon/code'); |
|
| 256 | 256 | |
| 257 | 257 | |
| 258 | - $search = $codeManager->createSearch( true ); |
|
| 258 | + $search = $codeManager->createSearch(true); |
|
| 259 | 259 | $expr = array( |
| 260 | - $search->compare( '==', 'coupon.code.code', $code ), |
|
| 260 | + $search->compare('==', 'coupon.code.code', $code), |
|
| 261 | 261 | $search->getConditions(), |
| 262 | 262 | ); |
| 263 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 264 | - $search->setSlice( 0, 1 ); |
|
| 263 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 264 | + $search->setSlice(0, 1); |
|
| 265 | 265 | |
| 266 | - $result = $codeManager->searchItems( $search ); |
|
| 266 | + $result = $codeManager->searchItems($search); |
|
| 267 | 267 | |
| 268 | - if( ( $codeItem = reset( $result ) ) === false ) { |
|
| 269 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Coupon code "%1$s" is invalid or not available any more', $code ) ); |
|
| 268 | + if (($codeItem = reset($result)) === false) { |
|
| 269 | + throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Coupon code "%1$s" is invalid or not available any more', $code)); |
|
| 270 | 270 | } |
| 271 | 271 | |
| 272 | 272 | |
| 273 | - $search = $manager->createSearch( true ); |
|
| 273 | + $search = $manager->createSearch(true); |
|
| 274 | 274 | $expr = array( |
| 275 | - $search->compare( '==', 'coupon.id', $codeItem->getParentId() ), |
|
| 275 | + $search->compare('==', 'coupon.id', $codeItem->getParentId()), |
|
| 276 | 276 | $search->getConditions(), |
| 277 | 277 | ); |
| 278 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 279 | - $search->setSlice( 0, 1 ); |
|
| 278 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 279 | + $search->setSlice(0, 1); |
|
| 280 | 280 | |
| 281 | - $result = $manager->searchItems( $search ); |
|
| 281 | + $result = $manager->searchItems($search); |
|
| 282 | 282 | |
| 283 | - if( ( $item = reset( $result ) ) === false ) { |
|
| 284 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Coupon for code "%1$s" is not available any more', $code ) ); |
|
| 283 | + if (($item = reset($result)) === false) { |
|
| 284 | + throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Coupon for code "%1$s" is not available any more', $code)); |
|
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | |
| 288 | - $provider = $manager->getProvider( $item, $code ); |
|
| 288 | + $provider = $manager->getProvider($item, $code); |
|
| 289 | 289 | |
| 290 | - if( $provider->isAvailable( $this->get() ) !== true ) { |
|
| 291 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Requirements for coupon code "%1$s" aren\'t met', $code ) ); |
|
| 290 | + if ($provider->isAvailable($this->get()) !== true) { |
|
| 291 | + throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Requirements for coupon code "%1$s" aren\'t met', $code)); |
|
| 292 | 292 | } |
| 293 | 293 | |
| 294 | - $provider->addCoupon( $this->get() ); |
|
| 294 | + $provider->addCoupon($this->get()); |
|
| 295 | 295 | $this->save(); |
| 296 | 296 | } |
| 297 | 297 | |
@@ -302,21 +302,21 @@ discard block |
||
| 302 | 302 | * @param string $code Coupon code entered by the user |
| 303 | 303 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid |
| 304 | 304 | */ |
| 305 | - public function deleteCoupon( $code ) |
|
| 305 | + public function deleteCoupon($code) |
|
| 306 | 306 | { |
| 307 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'coupon' ); |
|
| 307 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'coupon'); |
|
| 308 | 308 | |
| 309 | 309 | $search = $manager->createSearch(); |
| 310 | - $search->setConditions( $search->compare( '==', 'coupon.code.code', $code ) ); |
|
| 311 | - $search->setSlice( 0, 1 ); |
|
| 310 | + $search->setConditions($search->compare('==', 'coupon.code.code', $code)); |
|
| 311 | + $search->setSlice(0, 1); |
|
| 312 | 312 | |
| 313 | - $result = $manager->searchItems( $search ); |
|
| 313 | + $result = $manager->searchItems($search); |
|
| 314 | 314 | |
| 315 | - if( ( $item = reset( $result ) ) === false ) { |
|
| 316 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Coupon code "%1$s" is invalid', $code ) ); |
|
| 315 | + if (($item = reset($result)) === false) { |
|
| 316 | + throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Coupon code "%1$s" is invalid', $code)); |
|
| 317 | 317 | } |
| 318 | 318 | |
| 319 | - $manager->getProvider( $item, $code )->deleteCoupon( $this->get() ); |
|
| 319 | + $manager->getProvider($item, $code)->deleteCoupon($this->get()); |
|
| 320 | 320 | $this->save(); |
| 321 | 321 | } |
| 322 | 322 | |
@@ -329,28 +329,28 @@ discard block |
||
| 329 | 329 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the billing or delivery address is not of any required type of |
| 330 | 330 | * if one of the keys is invalid when using an array with key/value pairs |
| 331 | 331 | */ |
| 332 | - public function setAddress( $type, $value ) |
|
| 332 | + public function setAddress($type, $value) |
|
| 333 | 333 | { |
| 334 | - $address = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'order/base/address' )->createItem(); |
|
| 335 | - $address->setType( $type ); |
|
| 334 | + $address = \Aimeos\MShop\Factory::createManager($this->getContext(), 'order/base/address')->createItem(); |
|
| 335 | + $address->setType($type); |
|
| 336 | 336 | |
| 337 | - if( $value instanceof \Aimeos\MShop\Common\Item\Address\Iface ) |
|
| 337 | + if ($value instanceof \Aimeos\MShop\Common\Item\Address\Iface) |
|
| 338 | 338 | { |
| 339 | - $address->copyFrom( $value ); |
|
| 340 | - $this->get()->setAddress( $address, $type ); |
|
| 339 | + $address->copyFrom($value); |
|
| 340 | + $this->get()->setAddress($address, $type); |
|
| 341 | 341 | } |
| 342 | - else if( is_array( $value ) ) |
|
| 342 | + else if (is_array($value)) |
|
| 343 | 343 | { |
| 344 | - $this->setAddressFromArray( $address, $value ); |
|
| 345 | - $this->get()->setAddress( $address, $type ); |
|
| 344 | + $this->setAddressFromArray($address, $value); |
|
| 345 | + $this->get()->setAddress($address, $type); |
|
| 346 | 346 | } |
| 347 | - else if( $value === null ) |
|
| 347 | + else if ($value === null) |
|
| 348 | 348 | { |
| 349 | - $this->get()->deleteAddress( $type ); |
|
| 349 | + $this->get()->deleteAddress($type); |
|
| 350 | 350 | } |
| 351 | 351 | else |
| 352 | 352 | { |
| 353 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( sprintf( 'Invalid value for address type "%1$s"', $type ) ); |
|
| 353 | + throw new \Aimeos\Controller\Frontend\Basket\Exception(sprintf('Invalid value for address type "%1$s"', $type)); |
|
| 354 | 354 | } |
| 355 | 355 | |
| 356 | 356 | $this->save(); |
@@ -366,48 +366,48 @@ discard block |
||
| 366 | 366 | * entered by the customer when choosing one of the delivery or payment options |
| 367 | 367 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached |
| 368 | 368 | */ |
| 369 | - public function setService( $type, $id, array $attributes = array() ) |
|
| 369 | + public function setService($type, $id, array $attributes = array()) |
|
| 370 | 370 | { |
| 371 | - if( $id === null ) |
|
| 371 | + if ($id === null) |
|
| 372 | 372 | { |
| 373 | - $this->get()->deleteService( $type ); |
|
| 373 | + $this->get()->deleteService($type); |
|
| 374 | 374 | $this->save(); |
| 375 | 375 | return; |
| 376 | 376 | } |
| 377 | 377 | |
| 378 | 378 | $context = $this->getContext(); |
| 379 | 379 | |
| 380 | - $serviceManager = \Aimeos\MShop\Factory::createManager( $context, 'service' ); |
|
| 381 | - $serviceItem = $this->getDomainItem( 'service', 'service.id', $id, array( 'media', 'price', 'text' ) ); |
|
| 380 | + $serviceManager = \Aimeos\MShop\Factory::createManager($context, 'service'); |
|
| 381 | + $serviceItem = $this->getDomainItem('service', 'service.id', $id, array('media', 'price', 'text')); |
|
| 382 | 382 | |
| 383 | - $provider = $serviceManager->getProvider( $serviceItem ); |
|
| 384 | - $result = $provider->checkConfigFE( $attributes ); |
|
| 385 | - $unknown = array_diff_key( $attributes, $result ); |
|
| 383 | + $provider = $serviceManager->getProvider($serviceItem); |
|
| 384 | + $result = $provider->checkConfigFE($attributes); |
|
| 385 | + $unknown = array_diff_key($attributes, $result); |
|
| 386 | 386 | |
| 387 | - if( count( $unknown ) > 0 ) |
|
| 387 | + if (count($unknown) > 0) |
|
| 388 | 388 | { |
| 389 | - $msg = sprintf( 'Unknown attributes "%1$s"', implode( '","', array_keys( $unknown ) ) ); |
|
| 390 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
| 389 | + $msg = sprintf('Unknown attributes "%1$s"', implode('","', array_keys($unknown))); |
|
| 390 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
| 391 | 391 | } |
| 392 | 392 | |
| 393 | - foreach( $result as $key => $value ) |
|
| 393 | + foreach ($result as $key => $value) |
|
| 394 | 394 | { |
| 395 | - if( $value !== null ) { |
|
| 396 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $value ); |
|
| 395 | + if ($value !== null) { |
|
| 396 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($value); |
|
| 397 | 397 | } |
| 398 | 398 | } |
| 399 | 399 | |
| 400 | - $orderBaseServiceManager = \Aimeos\MShop\Factory::createManager( $context, 'order/base/service' ); |
|
| 400 | + $orderBaseServiceManager = \Aimeos\MShop\Factory::createManager($context, 'order/base/service'); |
|
| 401 | 401 | $orderServiceItem = $orderBaseServiceManager->createItem(); |
| 402 | - $orderServiceItem->copyFrom( $serviceItem ); |
|
| 402 | + $orderServiceItem->copyFrom($serviceItem); |
|
| 403 | 403 | |
| 404 | 404 | // remove service rebate of original price |
| 405 | - $price = $provider->calcPrice( $this->get() )->setRebate( '0.00' ); |
|
| 406 | - $orderServiceItem->setPrice( $price ); |
|
| 405 | + $price = $provider->calcPrice($this->get())->setRebate('0.00'); |
|
| 406 | + $orderServiceItem->setPrice($price); |
|
| 407 | 407 | |
| 408 | - $provider->setConfigFE( $orderServiceItem, $attributes ); |
|
| 408 | + $provider->setConfigFE($orderServiceItem, $attributes); |
|
| 409 | 409 | |
| 410 | - $this->get()->setService( $orderServiceItem, $type ); |
|
| 410 | + $this->get()->setService($orderServiceItem, $type); |
|
| 411 | 411 | $this->save(); |
| 412 | 412 | } |
| 413 | 413 | |
@@ -420,18 +420,18 @@ discard block |
||
| 420 | 420 | * an address item. |
| 421 | 421 | * @throws \Aimeos\Controller\Frontend\Basket\Exception |
| 422 | 422 | */ |
| 423 | - protected function setAddressFromArray( \Aimeos\MShop\Order\Item\Base\Address\Iface $address, array $map ) |
|
| 423 | + protected function setAddressFromArray(\Aimeos\MShop\Order\Item\Base\Address\Iface $address, array $map) |
|
| 424 | 424 | { |
| 425 | - foreach( $map as $key => $value ) { |
|
| 426 | - $map[$key] = strip_tags( $value ); // prevent XSS |
|
| 425 | + foreach ($map as $key => $value) { |
|
| 426 | + $map[$key] = strip_tags($value); // prevent XSS |
|
| 427 | 427 | } |
| 428 | 428 | |
| 429 | - $errors = $address->fromArray( $map ); |
|
| 429 | + $errors = $address->fromArray($map); |
|
| 430 | 430 | |
| 431 | - if( count( $errors ) > 0 ) |
|
| 431 | + if (count($errors) > 0) |
|
| 432 | 432 | { |
| 433 | - $msg = sprintf( 'Invalid address properties, please check your input' ); |
|
| 434 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg, 0, null, $errors ); |
|
| 433 | + $msg = sprintf('Invalid address properties, please check your input'); |
|
| 434 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg, 0, null, $errors); |
|
| 435 | 435 | } |
| 436 | 436 | } |
| 437 | 437 | } |
@@ -35,12 +35,12 @@ discard block |
||
| 35 | 35 | * @param string[] $attributes List of attribute codes as keys and strings entered by the customer as value |
| 36 | 36 | * @return string[] List of attributes codes as keys and error messages as values for invalid or missing values |
| 37 | 37 | */ |
| 38 | - public function checkAttributes( $serviceId, array $attributes ) |
|
| 38 | + public function checkAttributes($serviceId, array $attributes) |
|
| 39 | 39 | { |
| 40 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
| 41 | - $provider = $manager->getProvider( $manager->getItem( $serviceId, [], true ) ); |
|
| 40 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
| 41 | + $provider = $manager->getProvider($manager->getItem($serviceId, [], true)); |
|
| 42 | 42 | |
| 43 | - return array_filter( $provider->checkConfigFE( $attributes ) ); |
|
| 43 | + return array_filter($provider->checkConfigFE($attributes)); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | |
@@ -51,10 +51,10 @@ discard block |
||
| 51 | 51 | * @param string[] $ref List of domain names whose items should be fetched too |
| 52 | 52 | * @return \Aimeos\MShop\Service\Provider\Iface Service provider object |
| 53 | 53 | */ |
| 54 | - public function getProvider( $serviceId, $ref = ['media', 'price', 'text'] ) |
|
| 54 | + public function getProvider($serviceId, $ref = ['media', 'price', 'text']) |
|
| 55 | 55 | { |
| 56 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
| 57 | - return $manager->getProvider( $manager->getItem( $serviceId, $ref, true ) ); |
|
| 56 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
| 57 | + return $manager->getProvider($manager->getItem($serviceId, $ref, true)); |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | |
@@ -65,26 +65,26 @@ discard block |
||
| 65 | 65 | * @param string[] $ref List of domain names whose items should be fetched too |
| 66 | 66 | * @return \Aimeos\MShop\Service\Provider\Iface[] List of service IDs as keys and service provider objects as values |
| 67 | 67 | */ |
| 68 | - public function getProviders( $type = null, $ref = ['media', 'price', 'text'] ) |
|
| 68 | + public function getProviders($type = null, $ref = ['media', 'price', 'text']) |
|
| 69 | 69 | { |
| 70 | 70 | $list = []; |
| 71 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
| 71 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
| 72 | 72 | |
| 73 | - $search = $manager->createSearch( true ); |
|
| 74 | - $search->setSortations( array( $search->sort( '+', 'service.position' ) ) ); |
|
| 73 | + $search = $manager->createSearch(true); |
|
| 74 | + $search->setSortations(array($search->sort('+', 'service.position'))); |
|
| 75 | 75 | |
| 76 | - if( $type != null ) |
|
| 76 | + if ($type != null) |
|
| 77 | 77 | { |
| 78 | 78 | $expr = array( |
| 79 | 79 | $search->getConditions(), |
| 80 | - $search->compare( '==', 'service.type.code', $type ), |
|
| 81 | - $search->compare( '==', 'service.type.domain', 'service' ), |
|
| 80 | + $search->compare('==', 'service.type.code', $type), |
|
| 81 | + $search->compare('==', 'service.type.domain', 'service'), |
|
| 82 | 82 | ); |
| 83 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 83 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | - foreach( $manager->searchItems( $search, $ref ) as $id => $item ) { |
|
| 87 | - $list[$id] = $manager->getProvider( $item ); |
|
| 86 | + foreach ($manager->searchItems($search, $ref) as $id => $item) { |
|
| 87 | + $list[$id] = $manager->getProvider($item); |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | return $list; |
@@ -102,14 +102,14 @@ discard block |
||
| 102 | 102 | * @return \Aimeos\MShop\Common\Item\Helper\Form\Iface|null Form object with URL, parameters, etc. |
| 103 | 103 | * or null if no form data is required |
| 104 | 104 | */ |
| 105 | - public function process( \Aimeos\MShop\Order\Item\Iface $orderItem, $serviceId, array $urls, array $params ) |
|
| 105 | + public function process(\Aimeos\MShop\Order\Item\Iface $orderItem, $serviceId, array $urls, array $params) |
|
| 106 | 106 | { |
| 107 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
| 107 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
| 108 | 108 | |
| 109 | - $provider = $manager->getProvider( $manager->getItem( $serviceId, [], true ) ); |
|
| 110 | - $provider->injectGlobalConfigBE( $urls ); |
|
| 109 | + $provider = $manager->getProvider($manager->getItem($serviceId, [], true)); |
|
| 110 | + $provider->injectGlobalConfigBE($urls); |
|
| 111 | 111 | |
| 112 | - return $provider->process( $orderItem, $params ); |
|
| 112 | + return $provider->process($orderItem, $params); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | |
@@ -122,35 +122,35 @@ discard block |
||
| 122 | 122 | * (keys are <type>.url-self, <type>.url-success, <type>.url-update where type can be "delivery" or "payment") |
| 123 | 123 | * @return \Aimeos\MShop\Order\Item\Iface $orderItem Order item that has been updated |
| 124 | 124 | */ |
| 125 | - public function updateSync( ServerRequestInterface $request, ResponseInterface &$response, array $urls ) |
|
| 125 | + public function updateSync(ServerRequestInterface $request, ResponseInterface & $response, array $urls) |
|
| 126 | 126 | { |
| 127 | 127 | $queryParams = $request->getQueryParams(); |
| 128 | 128 | |
| 129 | - if( !isset( $queryParams['code'] ) ) { |
|
| 129 | + if (!isset($queryParams['code'])) { |
|
| 130 | 130 | return; |
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | $context = $this->getContext(); |
| 134 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'service' ); |
|
| 134 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'service'); |
|
| 135 | 135 | |
| 136 | - $provider = $manager->getProvider( $manager->findItem( $queryParams['code'] ) ); |
|
| 137 | - $provider->injectGlobalConfigBE( $urls ); |
|
| 136 | + $provider = $manager->getProvider($manager->findItem($queryParams['code'])); |
|
| 137 | + $provider->injectGlobalConfigBE($urls); |
|
| 138 | 138 | |
| 139 | - $params = array_merge( $queryParams, (array) $request->getParsedBody() ); |
|
| 139 | + $params = array_merge($queryParams, (array) $request->getParsedBody()); |
|
| 140 | 140 | $body = (string) $request->getBody(); |
| 141 | 141 | $response = null; |
| 142 | 142 | $headers = []; |
| 143 | 143 | |
| 144 | - if( ( $orderItem = $provider->updateSync( $params, $body, $response, $headers ) ) !== null ) |
|
| 144 | + if (($orderItem = $provider->updateSync($params, $body, $response, $headers)) !== null) |
|
| 145 | 145 | { |
| 146 | - if( $orderItem->getPaymentStatus() === \Aimeos\MShop\Order\Item\Base::PAY_UNFINISHED |
|
| 147 | - && $provider->isImplemented( \Aimeos\MShop\Service\Provider\Payment\Base::FEAT_QUERY ) |
|
| 146 | + if ($orderItem->getPaymentStatus() === \Aimeos\MShop\Order\Item\Base::PAY_UNFINISHED |
|
| 147 | + && $provider->isImplemented(\Aimeos\MShop\Service\Provider\Payment\Base::FEAT_QUERY) |
|
| 148 | 148 | ) { |
| 149 | - $provider->query( $orderItem ); |
|
| 149 | + $provider->query($orderItem); |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | // update stock, coupons, etc. |
| 153 | - \Aimeos\Controller\Frontend\Factory::createController( $context, 'order' )->update( $orderItem ); |
|
| 153 | + \Aimeos\Controller\Frontend\Factory::createController($context, 'order')->update($orderItem); |
|
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | return $orderItem; |
@@ -167,38 +167,38 @@ discard block |
||
| 167 | 167 | * @throws \Exception If an error occurs |
| 168 | 168 | * @deprecated Use getProviders() instead |
| 169 | 169 | */ |
| 170 | - public function getServices( $type, \Aimeos\MShop\Order\Item\Base\Iface $basket, $ref = ['media', 'price', 'text'] ) |
|
| 170 | + public function getServices($type, \Aimeos\MShop\Order\Item\Base\Iface $basket, $ref = ['media', 'price', 'text']) |
|
| 171 | 171 | { |
| 172 | - $serviceManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
| 172 | + $serviceManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
| 173 | 173 | |
| 174 | - $search = $serviceManager->createSearch( true ); |
|
| 174 | + $search = $serviceManager->createSearch(true); |
|
| 175 | 175 | $expr = array( |
| 176 | 176 | $search->getConditions(), |
| 177 | - $search->compare( '==', 'service.type.domain', 'service' ), |
|
| 178 | - $search->compare( '==', 'service.type.code', $type ), |
|
| 177 | + $search->compare('==', 'service.type.domain', 'service'), |
|
| 178 | + $search->compare('==', 'service.type.code', $type), |
|
| 179 | 179 | ); |
| 180 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
| 181 | - $search->setSortations( array( $search->sort( '+', 'service.position' ) ) ); |
|
| 180 | + $search->setConditions($search->combine('&&', $expr)); |
|
| 181 | + $search->setSortations(array($search->sort('+', 'service.position'))); |
|
| 182 | 182 | |
| 183 | - $items = $serviceManager->searchItems( $search, $ref ); |
|
| 183 | + $items = $serviceManager->searchItems($search, $ref); |
|
| 184 | 184 | |
| 185 | 185 | |
| 186 | - foreach( $items as $id => $service ) |
|
| 186 | + foreach ($items as $id => $service) |
|
| 187 | 187 | { |
| 188 | 188 | try |
| 189 | 189 | { |
| 190 | - $provider = $serviceManager->getProvider( $service ); |
|
| 190 | + $provider = $serviceManager->getProvider($service); |
|
| 191 | 191 | |
| 192 | - if( $provider->isAvailable( $basket ) ) { |
|
| 192 | + if ($provider->isAvailable($basket)) { |
|
| 193 | 193 | $this->providers[$type][$id] = $provider; |
| 194 | 194 | } else { |
| 195 | - unset( $items[$id] ); |
|
| 195 | + unset($items[$id]); |
|
| 196 | 196 | } |
| 197 | 197 | } |
| 198 | - catch( \Aimeos\MShop\Service\Exception $e ) |
|
| 198 | + catch (\Aimeos\MShop\Service\Exception $e) |
|
| 199 | 199 | { |
| 200 | - $msg = sprintf( 'Unable to create provider "%1$s" for service with ID "%2$s"', $service->getCode(), $id ); |
|
| 201 | - $this->getContext()->getLogger()->log( $msg, \Aimeos\MW\Logger\Base::WARN ); |
|
| 200 | + $msg = sprintf('Unable to create provider "%1$s" for service with ID "%2$s"', $service->getCode(), $id); |
|
| 201 | + $this->getContext()->getLogger()->log($msg, \Aimeos\MW\Logger\Base::WARN); |
|
| 202 | 202 | } |
| 203 | 203 | } |
| 204 | 204 | |
@@ -219,16 +219,16 @@ discard block |
||
| 219 | 219 | * @throws \Exception If an error occurs |
| 220 | 220 | * @deprecated Use getProvider() instead |
| 221 | 221 | */ |
| 222 | - public function getServiceAttributes( $type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket ) |
|
| 222 | + public function getServiceAttributes($type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket) |
|
| 223 | 223 | { |
| 224 | - if( isset( $this->providers[$type][$serviceId] ) ) { |
|
| 225 | - return $this->providers[$type][$serviceId]->getConfigFE( $basket ); |
|
| 224 | + if (isset($this->providers[$type][$serviceId])) { |
|
| 225 | + return $this->providers[$type][$serviceId]->getConfigFE($basket); |
|
| 226 | 226 | } |
| 227 | 227 | |
| 228 | - $serviceManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
| 229 | - $item = $serviceManager->getItem( $serviceId, ['price'], true ); |
|
| 228 | + $serviceManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
| 229 | + $item = $serviceManager->getItem($serviceId, ['price'], true); |
|
| 230 | 230 | |
| 231 | - return $serviceManager->getProvider( $item )->getConfigFE( $basket ); |
|
| 231 | + return $serviceManager->getProvider($item)->getConfigFE($basket); |
|
| 232 | 232 | } |
| 233 | 233 | |
| 234 | 234 | |
@@ -244,16 +244,16 @@ discard block |
||
| 244 | 244 | * @throws \Exception If an error occurs |
| 245 | 245 | * @deprecated Use getProvider() instead |
| 246 | 246 | */ |
| 247 | - public function getServicePrice( $type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket ) |
|
| 247 | + public function getServicePrice($type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket) |
|
| 248 | 248 | { |
| 249 | - if( isset( $this->providers[$type][$serviceId] ) ) { |
|
| 250 | - return $this->providers[$type][$serviceId]->calcPrice( $basket ); |
|
| 249 | + if (isset($this->providers[$type][$serviceId])) { |
|
| 250 | + return $this->providers[$type][$serviceId]->calcPrice($basket); |
|
| 251 | 251 | } |
| 252 | 252 | |
| 253 | - $serviceManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
| 254 | - $item = $serviceManager->getItem( $serviceId, ['price'], true ); |
|
| 253 | + $serviceManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
| 254 | + $item = $serviceManager->getItem($serviceId, ['price'], true); |
|
| 255 | 255 | |
| 256 | - return $serviceManager->getProvider( $item )->calcPrice( $basket ); |
|
| 256 | + return $serviceManager->getProvider($item)->calcPrice($basket); |
|
| 257 | 257 | } |
| 258 | 258 | |
| 259 | 259 | |
@@ -269,22 +269,22 @@ discard block |
||
| 269 | 269 | * @throws \Aimeos\Controller\Frontend\Service\Exception If no active service provider for this ID is available |
| 270 | 270 | * @deprecated Use checkAttributes() instead |
| 271 | 271 | */ |
| 272 | - public function checkServiceAttributes( $type, $serviceId, array $attributes ) |
|
| 272 | + public function checkServiceAttributes($type, $serviceId, array $attributes) |
|
| 273 | 273 | { |
| 274 | - if( !isset( $this->providers[$type][$serviceId] ) ) |
|
| 274 | + if (!isset($this->providers[$type][$serviceId])) |
|
| 275 | 275 | { |
| 276 | - $serviceManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
| 277 | - $item = $serviceManager->getItem( $serviceId, ['price'], true ); |
|
| 276 | + $serviceManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
| 277 | + $item = $serviceManager->getItem($serviceId, ['price'], true); |
|
| 278 | 278 | |
| 279 | - $this->providers[$type][$serviceId] = $serviceManager->getProvider( $item ); |
|
| 279 | + $this->providers[$type][$serviceId] = $serviceManager->getProvider($item); |
|
| 280 | 280 | } |
| 281 | 281 | |
| 282 | - $errors = $this->providers[$type][$serviceId]->checkConfigFE( $attributes ); |
|
| 282 | + $errors = $this->providers[$type][$serviceId]->checkConfigFE($attributes); |
|
| 283 | 283 | |
| 284 | - foreach( $errors as $key => $msg ) |
|
| 284 | + foreach ($errors as $key => $msg) |
|
| 285 | 285 | { |
| 286 | - if( $msg === null ) { |
|
| 287 | - unset( $errors[$key] ); |
|
| 286 | + if ($msg === null) { |
|
| 287 | + unset($errors[$key]); |
|
| 288 | 288 | } |
| 289 | 289 | } |
| 290 | 290 | |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | * @param string[] $attributes List of attribute codes as keys and strings entered by the customer as value |
| 31 | 31 | * @return string[] List of attributes codes as keys and error messages as values for invalid or missing values |
| 32 | 32 | */ |
| 33 | - public function checkAttributes( $serviceId, array $attributes ); |
|
| 33 | + public function checkAttributes($serviceId, array $attributes); |
|
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | 36 | * Returns the service item for the given ID |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | * @param array $ref List of domains for which the items referenced by the services should be fetched too |
| 40 | 40 | * @return \Aimeos\MShop\Service\Provider\Iface Service provider object |
| 41 | 41 | */ |
| 42 | - public function getProvider( $serviceId, $ref = ['media', 'price', 'text'] ); |
|
| 42 | + public function getProvider($serviceId, $ref = ['media', 'price', 'text']); |
|
| 43 | 43 | |
| 44 | 44 | /** |
| 45 | 45 | * Returns the service providers for the given type |
@@ -48,7 +48,7 @@ discard block |
||
| 48 | 48 | * @param array $ref List of domains for which the items referenced by the services should be fetched too |
| 49 | 49 | * @return \Aimeos\MShop\Service\Provider\Iface[] List of service IDs as keys and service provider objects as values |
| 50 | 50 | */ |
| 51 | - public function getProviders( $type = null, $ref = ['media', 'price', 'text'] ); |
|
| 51 | + public function getProviders($type = null, $ref = ['media', 'price', 'text']); |
|
| 52 | 52 | |
| 53 | 53 | /** |
| 54 | 54 | * Processes the service for the given order, e.g. payment and delivery services |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | * @return \Aimeos\MShop\Common\Item\Helper\Form\Iface|null Form object with URL, parameters, etc. |
| 62 | 62 | * or null if no form data is required |
| 63 | 63 | */ |
| 64 | - public function process( \Aimeos\MShop\Order\Item\Iface $orderItem, $serviceId, array $urls, array $params ); |
|
| 64 | + public function process(\Aimeos\MShop\Order\Item\Iface $orderItem, $serviceId, array $urls, array $params); |
|
| 65 | 65 | |
| 66 | 66 | /** |
| 67 | 67 | * Updates the payment or delivery status for the given request |
@@ -72,5 +72,5 @@ discard block |
||
| 72 | 72 | * (keys are <type>.url-self, <type>.url-success, <type>.url-update where type can be "delivery" or "payment") |
| 73 | 73 | * @return \Aimeos\MShop\Order\Item\Iface $orderItem Order item that has been updated |
| 74 | 74 | */ |
| 75 | - public function updateSync( ServerRequestInterface $request, ResponseInterface &$response, array $urls ); |
|
| 75 | + public function updateSync(ServerRequestInterface $request, ResponseInterface & $response, array $urls); |
|
| 76 | 76 | } |
@@ -33,18 +33,18 @@ discard block |
||
| 33 | 33 | * @param \Aimeos\Controller\Frontend\Iface $controller Controller object |
| 34 | 34 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object with required objects |
| 35 | 35 | */ |
| 36 | - public function __construct( \Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context ) |
|
| 36 | + public function __construct(\Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context) |
|
| 37 | 37 | { |
| 38 | 38 | $iface = '\Aimeos\Controller\Frontend\Service\Iface'; |
| 39 | - if( !( $controller instanceof $iface ) ) |
|
| 39 | + if (!($controller instanceof $iface)) |
|
| 40 | 40 | { |
| 41 | - $msg = sprintf( 'Class "%1$s" does not implement interface "%2$s"', get_class( $controller ), $iface ); |
|
| 42 | - throw new \Aimeos\Controller\Frontend\Exception( $msg ); |
|
| 41 | + $msg = sprintf('Class "%1$s" does not implement interface "%2$s"', get_class($controller), $iface); |
|
| 42 | + throw new \Aimeos\Controller\Frontend\Exception($msg); |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | $this->controller = $controller; |
| 46 | 46 | |
| 47 | - parent::__construct( $context ); |
|
| 47 | + parent::__construct($context); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | |
@@ -56,9 +56,9 @@ discard block |
||
| 56 | 56 | * @return mixed Returns the value of the called method |
| 57 | 57 | * @throws \Aimeos\Controller\Frontend\Exception If method call failed |
| 58 | 58 | */ |
| 59 | - public function __call( $name, array $param ) |
|
| 59 | + public function __call($name, array $param) |
|
| 60 | 60 | { |
| 61 | - return @call_user_func_array( array( $this->controller, $name ), $param ); |
|
| 61 | + return @call_user_func_array(array($this->controller, $name), $param); |
|
| 62 | 62 | } |
| 63 | 63 | |
| 64 | 64 | |
@@ -69,9 +69,9 @@ discard block |
||
| 69 | 69 | * @param string[] $attributes List of attribute codes as keys and strings entered by the customer as value |
| 70 | 70 | * @return string[] List of attributes codes as keys and error messages as values for invalid or missing values |
| 71 | 71 | */ |
| 72 | - public function checkAttributes( $serviceId, array $attributes ) |
|
| 72 | + public function checkAttributes($serviceId, array $attributes) |
|
| 73 | 73 | { |
| 74 | - return $this->controller->checkAttributes( $serviceId, $attributes ); |
|
| 74 | + return $this->controller->checkAttributes($serviceId, $attributes); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | |
@@ -82,9 +82,9 @@ discard block |
||
| 82 | 82 | * @param array $ref List of domains for which the items referenced by the services should be fetched too |
| 83 | 83 | * @return \Aimeos\MShop\Service\Provider\Iface Service provider object |
| 84 | 84 | */ |
| 85 | - public function getProvider( $serviceId, $ref = ['media', 'price', 'text'] ) |
|
| 85 | + public function getProvider($serviceId, $ref = ['media', 'price', 'text']) |
|
| 86 | 86 | { |
| 87 | - return $this->controller->getProvider( $serviceId, $ref ); |
|
| 87 | + return $this->controller->getProvider($serviceId, $ref); |
|
| 88 | 88 | } |
| 89 | 89 | |
| 90 | 90 | |
@@ -95,9 +95,9 @@ discard block |
||
| 95 | 95 | * @param array $ref List of domains for which the items referenced by the services should be fetched too |
| 96 | 96 | * @return \Aimeos\MShop\Service\Provider\Iface[] List of service IDs as keys and service provider objects as values |
| 97 | 97 | */ |
| 98 | - public function getProviders( $type = null, $ref = ['media', 'price', 'text'] ) |
|
| 98 | + public function getProviders($type = null, $ref = ['media', 'price', 'text']) |
|
| 99 | 99 | { |
| 100 | - return $this->controller->getProviders( $type, $ref ); |
|
| 100 | + return $this->controller->getProviders($type, $ref); |
|
| 101 | 101 | } |
| 102 | 102 | |
| 103 | 103 | |
@@ -112,9 +112,9 @@ discard block |
||
| 112 | 112 | * @return \Aimeos\MShop\Common\Item\Helper\Form\Iface|null Form object with URL, parameters, etc. |
| 113 | 113 | * or null if no form data is required |
| 114 | 114 | */ |
| 115 | - public function process( \Aimeos\MShop\Order\Item\Iface $orderItem, $serviceId, array $urls, array $params ) |
|
| 115 | + public function process(\Aimeos\MShop\Order\Item\Iface $orderItem, $serviceId, array $urls, array $params) |
|
| 116 | 116 | { |
| 117 | - return $this->controller->process( $orderItem, $serviceId, $urls, $params ); |
|
| 117 | + return $this->controller->process($orderItem, $serviceId, $urls, $params); |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | |
@@ -127,9 +127,9 @@ discard block |
||
| 127 | 127 | * (keys are <type>.url-self, <type>.url-success, <type>.url-update where type can be "delivery" or "payment") |
| 128 | 128 | * @return \Aimeos\MShop\Order\Item\Iface $orderItem Order item that has been updated |
| 129 | 129 | */ |
| 130 | - public function updateSync( ServerRequestInterface $request, ResponseInterface &$response, array $urls ) |
|
| 130 | + public function updateSync(ServerRequestInterface $request, ResponseInterface & $response, array $urls) |
|
| 131 | 131 | { |
| 132 | - return $this->controller->updateSync( $request, $response, $urls ); |
|
| 132 | + return $this->controller->updateSync($request, $response, $urls); |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | 135 | |
@@ -142,10 +142,10 @@ discard block |
||
| 142 | 142 | * @return array List of service items implementing \Aimeos\MShop\Service\Item\Iface with referenced items |
| 143 | 143 | * @deprecated Use getProviders() instead |
| 144 | 144 | */ |
| 145 | - public function getServices( $type, \Aimeos\MShop\Order\Item\Base\Iface $basket, |
|
| 146 | - $ref = array( 'media', 'price', 'text' ) ) |
|
| 145 | + public function getServices($type, \Aimeos\MShop\Order\Item\Base\Iface $basket, |
|
| 146 | + $ref = array('media', 'price', 'text')) |
|
| 147 | 147 | { |
| 148 | - return $this->controller->getServices( $type, $basket, $ref ); |
|
| 148 | + return $this->controller->getServices($type, $basket, $ref); |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | |
@@ -159,9 +159,9 @@ discard block |
||
| 159 | 159 | * @return array List of attribute definitions implementing \Aimeos\MW\Criteria\Attribute\Iface |
| 160 | 160 | * @deprecated Use getProvider() instead |
| 161 | 161 | */ |
| 162 | - public function getServiceAttributes( $type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket ) |
|
| 162 | + public function getServiceAttributes($type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket) |
|
| 163 | 163 | { |
| 164 | - return $this->controller->getServiceAttributes( $type, $serviceId, $basket ); |
|
| 164 | + return $this->controller->getServiceAttributes($type, $serviceId, $basket); |
|
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | |
@@ -177,9 +177,9 @@ discard block |
||
| 177 | 177 | * @throws \Exception If an error occurs |
| 178 | 178 | * @deprecated Use getProvider() instead |
| 179 | 179 | */ |
| 180 | - public function getServicePrice( $type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket ) |
|
| 180 | + public function getServicePrice($type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket) |
|
| 181 | 181 | { |
| 182 | - return $this->controller->getServicePrice( $type, $serviceId, $basket ); |
|
| 182 | + return $this->controller->getServicePrice($type, $serviceId, $basket); |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | |
@@ -194,9 +194,9 @@ discard block |
||
| 194 | 194 | * missing |
| 195 | 195 | * @deprecated Use checkAttributes() instead |
| 196 | 196 | */ |
| 197 | - public function checkServiceAttributes( $type, $serviceId, array $attributes ) |
|
| 197 | + public function checkServiceAttributes($type, $serviceId, array $attributes) |
|
| 198 | 198 | { |
| 199 | - return $this->controller->checkServiceAttributes( $type, $serviceId, $attributes ); |
|
| 199 | + return $this->controller->checkServiceAttributes($type, $serviceId, $attributes); |
|
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | |
@@ -17,122 +17,122 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | protected function setUp() |
| 19 | 19 | { |
| 20 | - \Aimeos\MShop\Factory::setCache( true ); |
|
| 20 | + \Aimeos\MShop\Factory::setCache(true); |
|
| 21 | 21 | |
| 22 | 22 | $this->context = \TestHelperFrontend::getContext(); |
| 23 | - $this->object = new \Aimeos\Controller\Frontend\Service\Standard( $this->context ); |
|
| 23 | + $this->object = new \Aimeos\Controller\Frontend\Service\Standard($this->context); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | |
| 27 | 27 | public static function setUpBeforeClass() |
| 28 | 28 | { |
| 29 | - $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
| 30 | - $orderBaseMgr = $orderManager->getSubManager( 'base' ); |
|
| 29 | + $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
| 30 | + $orderBaseMgr = $orderManager->getSubManager('base'); |
|
| 31 | 31 | self::$basket = $orderBaseMgr->createItem(); |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | |
| 35 | 35 | protected function tearDown() |
| 36 | 36 | { |
| 37 | - unset( $this->object, $this->context ); |
|
| 37 | + unset($this->object, $this->context); |
|
| 38 | 38 | |
| 39 | - \Aimeos\MShop\Factory::setCache( false ); |
|
| 39 | + \Aimeos\MShop\Factory::setCache(false); |
|
| 40 | 40 | \Aimeos\MShop\Factory::clear(); |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | |
| 44 | 44 | public function testCheckAttributes() |
| 45 | 45 | { |
| 46 | - $attributes = $this->object->checkAttributes( $this->getServiceItem()->getId(), [] ); |
|
| 47 | - $this->assertEquals( [], $attributes ); |
|
| 46 | + $attributes = $this->object->checkAttributes($this->getServiceItem()->getId(), []); |
|
| 47 | + $this->assertEquals([], $attributes); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | |
| 51 | 51 | public function testGetProviders() |
| 52 | 52 | { |
| 53 | - $providers = $this->object->getProviders( 'delivery' ); |
|
| 54 | - $this->assertGreaterThan( 0, count( $providers ) ); |
|
| 53 | + $providers = $this->object->getProviders('delivery'); |
|
| 54 | + $this->assertGreaterThan(0, count($providers)); |
|
| 55 | 55 | |
| 56 | - foreach( $providers as $provider ) { |
|
| 57 | - $this->assertInstanceOf( '\\Aimeos\\MShop\\Service\\Provider\\Iface', $provider ); |
|
| 56 | + foreach ($providers as $provider) { |
|
| 57 | + $this->assertInstanceOf('\\Aimeos\\MShop\\Service\\Provider\\Iface', $provider); |
|
| 58 | 58 | } |
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | |
| 62 | 62 | public function testGetProvider() |
| 63 | 63 | { |
| 64 | - $provider = $this->object->getProvider( $this->getServiceItem()->getId() ); |
|
| 65 | - $this->assertInstanceOf( '\\Aimeos\\MShop\\Service\\Provider\\Iface', $provider ); |
|
| 64 | + $provider = $this->object->getProvider($this->getServiceItem()->getId()); |
|
| 65 | + $this->assertInstanceOf('\\Aimeos\\MShop\\Service\\Provider\\Iface', $provider); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | |
| 69 | 69 | public function testProcess() |
| 70 | 70 | { |
| 71 | 71 | $form = new \Aimeos\MShop\Common\Item\Helper\Form\Standard(); |
| 72 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
| 73 | - $serviceId = \Aimeos\MShop\Factory::createManager( $this->context, 'service' )->findItem( 'unitcode' )->getId(); |
|
| 72 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
| 73 | + $serviceId = \Aimeos\MShop\Factory::createManager($this->context, 'service')->findItem('unitcode')->getId(); |
|
| 74 | 74 | |
| 75 | - $provider = $this->getMockBuilder( '\\Aimeos\\MShop\\Service\\Provider\\Delivery\\Standard' ) |
|
| 75 | + $provider = $this->getMockBuilder('\\Aimeos\\MShop\\Service\\Provider\\Delivery\\Standard') |
|
| 76 | 76 | ->disableOriginalConstructor() |
| 77 | - ->setMethods( ['process'] ) |
|
| 77 | + ->setMethods(['process']) |
|
| 78 | 78 | ->getMock(); |
| 79 | 79 | |
| 80 | - $manager = $this->getMockBuilder( '\\Aimeos\\MShop\\Service\\Manager\\Standard' ) |
|
| 81 | - ->setConstructorArgs( [$this->context] ) |
|
| 82 | - ->setMethods( ['getProvider'] ) |
|
| 80 | + $manager = $this->getMockBuilder('\\Aimeos\\MShop\\Service\\Manager\\Standard') |
|
| 81 | + ->setConstructorArgs([$this->context]) |
|
| 82 | + ->setMethods(['getProvider']) |
|
| 83 | 83 | ->getMock(); |
| 84 | 84 | |
| 85 | - \Aimeos\MShop\Factory::injectManager( $this->context, 'service', $manager ); |
|
| 85 | + \Aimeos\MShop\Factory::injectManager($this->context, 'service', $manager); |
|
| 86 | 86 | |
| 87 | - $provider->expects( $this->once() )->method( 'process' )->will( $this->returnValue( $form ) ); |
|
| 88 | - $manager->expects( $this->once() )->method( 'getProvider' )->will( $this->returnValue( $provider ) ); |
|
| 87 | + $provider->expects($this->once())->method('process')->will($this->returnValue($form)); |
|
| 88 | + $manager->expects($this->once())->method('getProvider')->will($this->returnValue($provider)); |
|
| 89 | 89 | |
| 90 | 90 | |
| 91 | - $result = $this->object->process( $item, $serviceId, [], [] ); |
|
| 92 | - $this->assertInstanceOf( '\Aimeos\MShop\Common\Item\Helper\Form\Iface', $result ); |
|
| 91 | + $result = $this->object->process($item, $serviceId, [], []); |
|
| 92 | + $this->assertInstanceOf('\Aimeos\MShop\Common\Item\Helper\Form\Iface', $result); |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | |
| 96 | 96 | public function testUpdateSync() |
| 97 | 97 | { |
| 98 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
| 98 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
| 99 | 99 | |
| 100 | - $response = $this->getMockBuilder( '\Psr\Http\Message\ResponseInterface' )->getMock(); |
|
| 101 | - $request = $this->getMockBuilder( '\Psr\Http\Message\ServerRequestInterface' )->getMock(); |
|
| 100 | + $response = $this->getMockBuilder('\Psr\Http\Message\ResponseInterface')->getMock(); |
|
| 101 | + $request = $this->getMockBuilder('\Psr\Http\Message\ServerRequestInterface')->getMock(); |
|
| 102 | 102 | |
| 103 | - $provider = $this->getMockBuilder( '\\Aimeos\\MShop\\Service\\Provider\\Delivery\\Standard' ) |
|
| 104 | - ->setMethods( ['updateSync', 'query', 'isImplemented'] ) |
|
| 103 | + $provider = $this->getMockBuilder('\\Aimeos\\MShop\\Service\\Provider\\Delivery\\Standard') |
|
| 104 | + ->setMethods(['updateSync', 'query', 'isImplemented']) |
|
| 105 | 105 | ->disableOriginalConstructor() |
| 106 | 106 | ->getMock(); |
| 107 | 107 | |
| 108 | - $manager = $this->getMockBuilder( '\\Aimeos\\MShop\\Service\\Manager\\Standard' ) |
|
| 109 | - ->setConstructorArgs( array( $this->context ) ) |
|
| 110 | - ->setMethods( ['getProvider'] ) |
|
| 108 | + $manager = $this->getMockBuilder('\\Aimeos\\MShop\\Service\\Manager\\Standard') |
|
| 109 | + ->setConstructorArgs(array($this->context)) |
|
| 110 | + ->setMethods(['getProvider']) |
|
| 111 | 111 | ->getMock(); |
| 112 | 112 | |
| 113 | - \Aimeos\MShop\Factory::injectManager( $this->context, 'service', $manager ); |
|
| 113 | + \Aimeos\MShop\Factory::injectManager($this->context, 'service', $manager); |
|
| 114 | 114 | |
| 115 | 115 | |
| 116 | - $request->expects( $this->once() )->method( 'getQueryParams' )->will( $this->returnValue( ['code' => 'unitcode'] ) ); |
|
| 117 | - $manager->expects( $this->once() )->method( 'getProvider' )->will( $this->returnValue( $provider ) ); |
|
| 118 | - $provider->expects( $this->once() )->method( 'updateSync' )->will( $this->returnValue( $item ) ); |
|
| 119 | - $provider->expects( $this->once() )->method( 'isImplemented' )->will( $this->returnValue( true ) ); |
|
| 120 | - $provider->expects( $this->once() )->method( 'query' ); |
|
| 116 | + $request->expects($this->once())->method('getQueryParams')->will($this->returnValue(['code' => 'unitcode'])); |
|
| 117 | + $manager->expects($this->once())->method('getProvider')->will($this->returnValue($provider)); |
|
| 118 | + $provider->expects($this->once())->method('updateSync')->will($this->returnValue($item)); |
|
| 119 | + $provider->expects($this->once())->method('isImplemented')->will($this->returnValue(true)); |
|
| 120 | + $provider->expects($this->once())->method('query'); |
|
| 121 | 121 | |
| 122 | - $this->object->updateSync( $request, $response, [] ); |
|
| 122 | + $this->object->updateSync($request, $response, []); |
|
| 123 | 123 | } |
| 124 | 124 | |
| 125 | 125 | |
| 126 | 126 | public function testGetServices() |
| 127 | 127 | { |
| 128 | - $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
| 129 | - $basket = $orderManager->getSubManager( 'base' )->createItem(); |
|
| 128 | + $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
| 129 | + $basket = $orderManager->getSubManager('base')->createItem(); |
|
| 130 | 130 | |
| 131 | - $services = $this->object->getServices( 'delivery', $basket ); |
|
| 132 | - $this->assertGreaterThan( 0, count( $services ) ); |
|
| 131 | + $services = $this->object->getServices('delivery', $basket); |
|
| 132 | + $this->assertGreaterThan(0, count($services)); |
|
| 133 | 133 | |
| 134 | - foreach( $services as $service ) { |
|
| 135 | - $this->assertInstanceOf( '\\Aimeos\\MShop\\Service\\Item\\Iface', $service ); |
|
| 134 | + foreach ($services as $service) { |
|
| 135 | + $this->assertInstanceOf('\\Aimeos\\MShop\\Service\\Item\\Iface', $service); |
|
| 136 | 136 | } |
| 137 | 137 | } |
| 138 | 138 | |
@@ -140,83 +140,83 @@ discard block |
||
| 140 | 140 | public function testGetServiceAttributes() |
| 141 | 141 | { |
| 142 | 142 | $service = $this->getServiceItem(); |
| 143 | - $attributes = $this->object->getServiceAttributes( 'delivery', $service->getId(), self::$basket ); |
|
| 143 | + $attributes = $this->object->getServiceAttributes('delivery', $service->getId(), self::$basket); |
|
| 144 | 144 | |
| 145 | - $this->assertEquals( 0, count( $attributes ) ); |
|
| 145 | + $this->assertEquals(0, count($attributes)); |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | |
| 149 | 149 | public function testGetServiceAttributesCache() |
| 150 | 150 | { |
| 151 | - $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
| 152 | - $basket = $orderManager->getSubManager( 'base' )->createItem(); |
|
| 151 | + $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
| 152 | + $basket = $orderManager->getSubManager('base')->createItem(); |
|
| 153 | 153 | |
| 154 | - $services = $this->object->getServices( 'delivery', $basket ); |
|
| 154 | + $services = $this->object->getServices('delivery', $basket); |
|
| 155 | 155 | |
| 156 | - if( ( $service = reset( $services ) ) === false ) { |
|
| 157 | - throw new \RuntimeException( 'No service item found' ); |
|
| 156 | + if (($service = reset($services)) === false) { |
|
| 157 | + throw new \RuntimeException('No service item found'); |
|
| 158 | 158 | } |
| 159 | 159 | |
| 160 | - $attributes = $this->object->getServiceAttributes( 'delivery', $service->getId(), self::$basket ); |
|
| 160 | + $attributes = $this->object->getServiceAttributes('delivery', $service->getId(), self::$basket); |
|
| 161 | 161 | |
| 162 | - $this->assertEquals( 0, count( $attributes ) ); |
|
| 162 | + $this->assertEquals(0, count($attributes)); |
|
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | |
| 166 | 166 | public function testGetServiceAttributesNoItems() |
| 167 | 167 | { |
| 168 | - $this->setExpectedException( '\\Aimeos\\MShop\\Exception' ); |
|
| 169 | - $this->object->getServiceAttributes( 'invalid', -1, self::$basket ); |
|
| 168 | + $this->setExpectedException('\\Aimeos\\MShop\\Exception'); |
|
| 169 | + $this->object->getServiceAttributes('invalid', -1, self::$basket); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | |
| 173 | 173 | public function testGetServicePrice() |
| 174 | 174 | { |
| 175 | - $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
| 176 | - $basket = $orderManager->getSubManager( 'base' )->createItem(); |
|
| 175 | + $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
| 176 | + $basket = $orderManager->getSubManager('base')->createItem(); |
|
| 177 | 177 | |
| 178 | 178 | $service = $this->getServiceItem(); |
| 179 | - $price = $this->object->getServicePrice( 'delivery', $service->getId(), $basket ); |
|
| 179 | + $price = $this->object->getServicePrice('delivery', $service->getId(), $basket); |
|
| 180 | 180 | |
| 181 | - $this->assertEquals( '12.95', $price->getValue() ); |
|
| 182 | - $this->assertEquals( '1.99', $price->getCosts() ); |
|
| 181 | + $this->assertEquals('12.95', $price->getValue()); |
|
| 182 | + $this->assertEquals('1.99', $price->getCosts()); |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | |
| 186 | 186 | public function testGetServicePriceCache() |
| 187 | 187 | { |
| 188 | - $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
| 189 | - $basket = $orderManager->getSubManager( 'base' )->createItem(); |
|
| 188 | + $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
| 189 | + $basket = $orderManager->getSubManager('base')->createItem(); |
|
| 190 | 190 | |
| 191 | - $services = $this->object->getServices( 'delivery', $basket ); |
|
| 191 | + $services = $this->object->getServices('delivery', $basket); |
|
| 192 | 192 | |
| 193 | - if( ( $service = reset( $services ) ) === false ) { |
|
| 194 | - throw new \RuntimeException( 'No service item found' ); |
|
| 193 | + if (($service = reset($services)) === false) { |
|
| 194 | + throw new \RuntimeException('No service item found'); |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | - $price = $this->object->getServicePrice( 'delivery', $service->getId(), $basket ); |
|
| 197 | + $price = $this->object->getServicePrice('delivery', $service->getId(), $basket); |
|
| 198 | 198 | |
| 199 | - $this->assertEquals( '12.95', $price->getValue() ); |
|
| 200 | - $this->assertEquals( '1.99', $price->getCosts() ); |
|
| 199 | + $this->assertEquals('12.95', $price->getValue()); |
|
| 200 | + $this->assertEquals('1.99', $price->getCosts()); |
|
| 201 | 201 | } |
| 202 | 202 | |
| 203 | 203 | |
| 204 | 204 | public function testGetServicePriceNoItems() |
| 205 | 205 | { |
| 206 | - $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
| 207 | - $basket = $orderManager->getSubManager( 'base' )->createItem(); |
|
| 206 | + $orderManager = \Aimeos\MShop\Order\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
| 207 | + $basket = $orderManager->getSubManager('base')->createItem(); |
|
| 208 | 208 | |
| 209 | - $this->setExpectedException( '\\Aimeos\\MShop\\Exception' ); |
|
| 210 | - $this->object->getServicePrice( 'invalid', -1, $basket ); |
|
| 209 | + $this->setExpectedException('\\Aimeos\\MShop\\Exception'); |
|
| 210 | + $this->object->getServicePrice('invalid', -1, $basket); |
|
| 211 | 211 | } |
| 212 | 212 | |
| 213 | 213 | |
| 214 | 214 | public function testCheckServiceAttributes() |
| 215 | 215 | { |
| 216 | 216 | $service = $this->getServiceItem(); |
| 217 | - $attributes = $this->object->checkServiceAttributes( 'delivery', $service->getId(), array() ); |
|
| 217 | + $attributes = $this->object->checkServiceAttributes('delivery', $service->getId(), array()); |
|
| 218 | 218 | |
| 219 | - $this->assertEquals( array(), $attributes ); |
|
| 219 | + $this->assertEquals(array(), $attributes); |
|
| 220 | 220 | } |
| 221 | 221 | |
| 222 | 222 | |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | */ |
| 226 | 226 | protected function getServiceItem() |
| 227 | 227 | { |
| 228 | - $manager = \Aimeos\MShop\Service\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
| 229 | - return $manager->findItem( 'unitcode' ); |
|
| 228 | + $manager = \Aimeos\MShop\Service\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
| 229 | + return $manager->findItem('unitcode'); |
|
| 230 | 230 | } |
| 231 | 231 | } |
@@ -20,161 +20,161 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $this->context = \TestHelperFrontend::getContext(); |
| 22 | 22 | |
| 23 | - $this->stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Service\Standard' ) |
|
| 23 | + $this->stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Service\Standard') |
|
| 24 | 24 | ->disableOriginalConstructor() |
| 25 | 25 | ->getMock(); |
| 26 | 26 | |
| 27 | - $this->object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Service\Decorator\Base' ) |
|
| 28 | - ->setConstructorArgs( [$this->stub, $this->context] ) |
|
| 27 | + $this->object = $this->getMockBuilder('\Aimeos\Controller\Frontend\Service\Decorator\Base') |
|
| 28 | + ->setConstructorArgs([$this->stub, $this->context]) |
|
| 29 | 29 | ->getMockForAbstractClass(); |
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | |
| 33 | 33 | protected function tearDown() |
| 34 | 34 | { |
| 35 | - unset( $this->context, $this->object, $this->stub ); |
|
| 35 | + unset($this->context, $this->object, $this->stub); |
|
| 36 | 36 | } |
| 37 | 37 | |
| 38 | 38 | |
| 39 | 39 | public function testConstructException() |
| 40 | 40 | { |
| 41 | - $stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Iface' )->getMock(); |
|
| 41 | + $stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Iface')->getMock(); |
|
| 42 | 42 | |
| 43 | - $this->setExpectedException( '\Aimeos\Controller\Frontend\Exception' ); |
|
| 43 | + $this->setExpectedException('\Aimeos\Controller\Frontend\Exception'); |
|
| 44 | 44 | |
| 45 | - $this->getMockBuilder( '\Aimeos\Controller\Frontend\Service\Decorator\Base' ) |
|
| 46 | - ->setConstructorArgs( [$stub, $this->context] ) |
|
| 45 | + $this->getMockBuilder('\Aimeos\Controller\Frontend\Service\Decorator\Base') |
|
| 46 | + ->setConstructorArgs([$stub, $this->context]) |
|
| 47 | 47 | ->getMockForAbstractClass(); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | |
| 51 | 51 | public function testCall() |
| 52 | 52 | { |
| 53 | - $stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Service\Standard' ) |
|
| 53 | + $stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Service\Standard') |
|
| 54 | 54 | ->disableOriginalConstructor() |
| 55 | - ->setMethods( ['invalid'] ) |
|
| 55 | + ->setMethods(['invalid']) |
|
| 56 | 56 | ->getMock(); |
| 57 | 57 | |
| 58 | - $object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Service\Decorator\Base' ) |
|
| 59 | - ->setConstructorArgs( [$stub, $this->context] ) |
|
| 58 | + $object = $this->getMockBuilder('\Aimeos\Controller\Frontend\Service\Decorator\Base') |
|
| 59 | + ->setConstructorArgs([$stub, $this->context]) |
|
| 60 | 60 | ->getMockForAbstractClass(); |
| 61 | 61 | |
| 62 | - $stub->expects( $this->once() )->method( 'invalid' )->will( $this->returnValue( true ) ); |
|
| 62 | + $stub->expects($this->once())->method('invalid')->will($this->returnValue(true)); |
|
| 63 | 63 | |
| 64 | - $this->assertTrue( $object->invalid() ); |
|
| 64 | + $this->assertTrue($object->invalid()); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | |
| 68 | 68 | public function testCheckAttributes() |
| 69 | 69 | { |
| 70 | - $this->stub->expects( $this->once() )->method( 'checkAttributes' ) |
|
| 71 | - ->will( $this->returnValue( [] ) ); |
|
| 70 | + $this->stub->expects($this->once())->method('checkAttributes') |
|
| 71 | + ->will($this->returnValue([])); |
|
| 72 | 72 | |
| 73 | - $this->assertEquals( [], $this->object->checkAttributes( -1, [] ) ); |
|
| 73 | + $this->assertEquals([], $this->object->checkAttributes( -1, [] )); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | |
| 77 | 77 | public function testGetProvider() |
| 78 | 78 | { |
| 79 | - $manager = \Aimeos\MShop\Factory::createManager( $this->context, 'service' ); |
|
| 80 | - $provider = $manager->getProvider( $manager->findItem( 'unitcode', [], 'service', 'delivery' ) ); |
|
| 79 | + $manager = \Aimeos\MShop\Factory::createManager($this->context, 'service'); |
|
| 80 | + $provider = $manager->getProvider($manager->findItem('unitcode', [], 'service', 'delivery')); |
|
| 81 | 81 | |
| 82 | - $this->stub->expects( $this->once() )->method( 'getProvider' ) |
|
| 83 | - ->will( $this->returnValue( $provider ) ); |
|
| 82 | + $this->stub->expects($this->once())->method('getProvider') |
|
| 83 | + ->will($this->returnValue($provider)); |
|
| 84 | 84 | |
| 85 | - $this->assertSame( $provider, $this->object->getProvider( -1 ) ); |
|
| 85 | + $this->assertSame($provider, $this->object->getProvider( -1 )); |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | |
| 89 | 89 | public function testGetProviders() |
| 90 | 90 | { |
| 91 | - $this->stub->expects( $this->once() )->method( 'getProviders' ) |
|
| 92 | - ->will( $this->returnValue( [] ) ); |
|
| 91 | + $this->stub->expects($this->once())->method('getProviders') |
|
| 92 | + ->will($this->returnValue([])); |
|
| 93 | 93 | |
| 94 | - $this->assertEquals( [], $this->object->getProviders( 'payment' ) ); |
|
| 94 | + $this->assertEquals([], $this->object->getProviders('payment')); |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | |
| 98 | 98 | public function testProcess() |
| 99 | 99 | { |
| 100 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
| 100 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
| 101 | 101 | |
| 102 | - $this->stub->expects( $this->once() )->method( 'process' ) |
|
| 103 | - ->will( $this->returnValue( new \Aimeos\MShop\Common\Item\Helper\Form\Standard() ) ); |
|
| 102 | + $this->stub->expects($this->once())->method('process') |
|
| 103 | + ->will($this->returnValue(new \Aimeos\MShop\Common\Item\Helper\Form\Standard())); |
|
| 104 | 104 | |
| 105 | - $this->assertInstanceOf( 'Aimeos\MShop\Common\Item\Helper\Form\Iface', $this->object->process( $item, -1, [], [] ) ); |
|
| 105 | + $this->assertInstanceOf('Aimeos\MShop\Common\Item\Helper\Form\Iface', $this->object->process($item, -1, [], [])); |
|
| 106 | 106 | } |
| 107 | 107 | |
| 108 | 108 | |
| 109 | 109 | public function testUpdateSync() |
| 110 | 110 | { |
| 111 | - $response = $this->getMockBuilder( '\Psr\Http\Message\ResponseInterface' )->getMock(); |
|
| 112 | - $request = $this->getMockBuilder( '\Psr\Http\Message\ServerRequestInterface' )->getMock(); |
|
| 113 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
| 111 | + $response = $this->getMockBuilder('\Psr\Http\Message\ResponseInterface')->getMock(); |
|
| 112 | + $request = $this->getMockBuilder('\Psr\Http\Message\ServerRequestInterface')->getMock(); |
|
| 113 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
| 114 | 114 | |
| 115 | - $this->stub->expects( $this->once() )->method( 'updateSync' ) |
|
| 116 | - ->will( $this->returnValue( $item ) ); |
|
| 115 | + $this->stub->expects($this->once())->method('updateSync') |
|
| 116 | + ->will($this->returnValue($item)); |
|
| 117 | 117 | |
| 118 | - $this->assertInstanceOf( 'Aimeos\MShop\Order\Item\Iface', $this->object->updateSync( $request, $response, [] ) ); |
|
| 118 | + $this->assertInstanceOf('Aimeos\MShop\Order\Item\Iface', $this->object->updateSync($request, $response, [])); |
|
| 119 | 119 | } |
| 120 | 120 | |
| 121 | 121 | |
| 122 | 122 | public function testGetServices() |
| 123 | 123 | { |
| 124 | - $basket = \Aimeos\MShop\Factory::createManager( $this->context, 'order/base' )->createItem(); |
|
| 124 | + $basket = \Aimeos\MShop\Factory::createManager($this->context, 'order/base')->createItem(); |
|
| 125 | 125 | |
| 126 | - $this->stub->expects( $this->once() )->method( 'getServices' ) |
|
| 127 | - ->will( $this->returnValue( [] ) ); |
|
| 126 | + $this->stub->expects($this->once())->method('getServices') |
|
| 127 | + ->will($this->returnValue([])); |
|
| 128 | 128 | |
| 129 | - $this->assertEquals( [], $this->object->getServices( 'payment', $basket ) ); |
|
| 129 | + $this->assertEquals([], $this->object->getServices('payment', $basket)); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | |
| 133 | 133 | public function testGetServiceAttributes() |
| 134 | 134 | { |
| 135 | - $basket = \Aimeos\MShop\Factory::createManager( $this->context, 'order/base' )->createItem(); |
|
| 135 | + $basket = \Aimeos\MShop\Factory::createManager($this->context, 'order/base')->createItem(); |
|
| 136 | 136 | |
| 137 | - $this->stub->expects( $this->once() )->method( 'getServiceAttributes' ) |
|
| 138 | - ->will( $this->returnValue( [] ) ); |
|
| 137 | + $this->stub->expects($this->once())->method('getServiceAttributes') |
|
| 138 | + ->will($this->returnValue([])); |
|
| 139 | 139 | |
| 140 | - $this->assertEquals( [], $this->object->getServiceAttributes( 'payment', -1, $basket ) ); |
|
| 140 | + $this->assertEquals([], $this->object->getServiceAttributes('payment', -1, $basket)); |
|
| 141 | 141 | } |
| 142 | 142 | |
| 143 | 143 | |
| 144 | 144 | public function testGetServicePrice() |
| 145 | 145 | { |
| 146 | - $priceItem = \Aimeos\MShop\Factory::createManager( $this->context, 'price' )->createItem(); |
|
| 147 | - $basket = \Aimeos\MShop\Factory::createManager( $this->context, 'order/base' )->createItem(); |
|
| 146 | + $priceItem = \Aimeos\MShop\Factory::createManager($this->context, 'price')->createItem(); |
|
| 147 | + $basket = \Aimeos\MShop\Factory::createManager($this->context, 'order/base')->createItem(); |
|
| 148 | 148 | |
| 149 | - $this->stub->expects( $this->once() )->method( 'getServicePrice' ) |
|
| 150 | - ->will( $this->returnValue( $priceItem ) ); |
|
| 149 | + $this->stub->expects($this->once())->method('getServicePrice') |
|
| 150 | + ->will($this->returnValue($priceItem)); |
|
| 151 | 151 | |
| 152 | - $this->assertInstanceOf( '\Aimeos\MShop\Price\Item\Iface', $this->object->getServicePrice( 'payment', -1, $basket ) ); |
|
| 152 | + $this->assertInstanceOf('\Aimeos\MShop\Price\Item\Iface', $this->object->getServicePrice('payment', -1, $basket)); |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | |
| 156 | 156 | public function testCheckServiceAttributes() |
| 157 | 157 | { |
| 158 | - $this->stub->expects( $this->once() )->method( 'checkServiceAttributes' ) |
|
| 159 | - ->will( $this->returnValue( [] ) ); |
|
| 158 | + $this->stub->expects($this->once())->method('checkServiceAttributes') |
|
| 159 | + ->will($this->returnValue([])); |
|
| 160 | 160 | |
| 161 | - $this->assertEquals( [], $this->object->checkServiceAttributes( 'payment', -1, [] ) ); |
|
| 161 | + $this->assertEquals([], $this->object->checkServiceAttributes('payment', -1, [])); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | |
| 165 | 165 | public function testGetController() |
| 166 | 166 | { |
| 167 | - $result = $this->access( 'getController' )->invokeArgs( $this->object, [] ); |
|
| 167 | + $result = $this->access('getController')->invokeArgs($this->object, []); |
|
| 168 | 168 | |
| 169 | - $this->assertSame( $this->stub, $result ); |
|
| 169 | + $this->assertSame($this->stub, $result); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | |
| 173 | - protected function access( $name ) |
|
| 173 | + protected function access($name) |
|
| 174 | 174 | { |
| 175 | - $class = new \ReflectionClass( '\Aimeos\Controller\Frontend\Service\Decorator\Base' ); |
|
| 176 | - $method = $class->getMethod( $name ); |
|
| 177 | - $method->setAccessible( true ); |
|
| 175 | + $class = new \ReflectionClass('\Aimeos\Controller\Frontend\Service\Decorator\Base'); |
|
| 176 | + $method = $class->getMethod($name); |
|
| 177 | + $method->setAccessible(true); |
|
| 178 | 178 | |
| 179 | 179 | return $method; |
| 180 | 180 | } |