@@ -112,9 +112,12 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | public function create( array $values = [] ) : \Aimeos\MShop\Common\Item\Iface |
| 114 | 114 | { |
| 115 | - try { |
|
| 115 | + try |
|
| 116 | + { |
|
| 116 | 117 | $values['locale.language.siteid'] = $this->context()->locale()->getSiteId(); |
| 117 | - } catch( \Exception $ex ) { |
|
| 118 | + } |
|
| 119 | + catch( \Exception $ex ) |
|
| 120 | + { |
|
| 118 | 121 | $values['locale.language.siteid'] = null; |
| 119 | 122 | } |
| 120 | 123 | |
@@ -181,8 +184,7 @@ discard block |
||
| 181 | 184 | */ |
| 182 | 185 | $path = 'mshop/locale/manager/language/insert'; |
| 183 | 186 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 184 | - } |
|
| 185 | - else |
|
| 187 | + } else |
|
| 186 | 188 | { |
| 187 | 189 | /** mshop/locale/manager/language/update/mysql |
| 188 | 190 | * Updates an existing language record in the database |
@@ -112,9 +112,12 @@ discard block |
||
| 112 | 112 | */ |
| 113 | 113 | public function create( array $values = [] ) : \Aimeos\MShop\Common\Item\Iface |
| 114 | 114 | { |
| 115 | - try { |
|
| 115 | + try |
|
| 116 | + { |
|
| 116 | 117 | $values['locale.currency.siteid'] = $this->context()->locale()->getSiteId(); |
| 117 | - } catch( \Exception $e ) { |
|
| 118 | + } |
|
| 119 | + catch( \Exception $e ) |
|
| 120 | + { |
|
| 118 | 121 | $values['locale.currency.siteid'] = null; |
| 119 | 122 | } |
| 120 | 123 | |
@@ -181,8 +184,7 @@ discard block |
||
| 181 | 184 | */ |
| 182 | 185 | $path = 'mshop/locale/manager/currency/insert'; |
| 183 | 186 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 184 | - } |
|
| 185 | - else |
|
| 187 | + } else |
|
| 186 | 188 | { |
| 187 | 189 | /** mshop/locale/manager/currency/update/mysql |
| 188 | 190 | * Updates an existing currency record in the database |
@@ -108,9 +108,12 @@ |
||
| 108 | 108 | */ |
| 109 | 109 | public function scan( string $path = null ) : iterable |
| 110 | 110 | { |
| 111 | - try { |
|
| 111 | + try |
|
| 112 | + { |
|
| 112 | 113 | return new \DirectoryIterator( $this->resolve( (string) $path ) ); |
| 113 | - } catch( \Exception $e ) { |
|
| 114 | + } |
|
| 115 | + catch( \Exception $e ) |
|
| 116 | + { |
|
| 114 | 117 | throw new Exception( $e->getMessage(), 0, $e ); |
| 115 | 118 | } |
| 116 | 119 | } |
@@ -50,8 +50,7 @@ discard block |
||
| 50 | 50 | { |
| 51 | 51 | $this->image->setImageAlphaChannel( \Imagick::ALPHACHANNEL_ACTIVATE ); |
| 52 | 52 | $this->image->setImageBackgroundColor( $options['image']['background'] ?? 'transparent' ); |
| 53 | - } |
|
| 54 | - else |
|
| 53 | + } else |
|
| 55 | 54 | { |
| 56 | 55 | $this->image->setImageBackgroundColor( $options['image']['background'] ?? '#ffffff' ); |
| 57 | 56 | } |
@@ -174,15 +173,13 @@ discard block |
||
| 174 | 173 | $newMedia->image->cropThumbnailImage( (int) $width, (int) $height ); |
| 175 | 174 | // see https://www.php.net/manual/en/imagick.cropthumbnailimage.php#106710 |
| 176 | 175 | $newMedia->image->setImagePage( 0, 0, 0, 0 ); |
| 177 | - } |
|
| 178 | - elseif( $fit === 1 && $width && $height ) |
|
| 176 | + } elseif( $fit === 1 && $width && $height ) |
|
| 179 | 177 | { |
| 180 | 178 | $w = ( $width - $newMedia->image->getImageWidth() ) / 2; |
| 181 | 179 | $h = ( $height - $newMedia->image->getImageHeight() ) / 2; |
| 182 | 180 | |
| 183 | 181 | $newMedia->image->extentImage( $width, $height, (int) -$w, (int) -$h ); |
| 184 | - } |
|
| 185 | - else |
|
| 182 | + } else |
|
| 186 | 183 | { |
| 187 | 184 | $w = $this->image->getImageWidth(); |
| 188 | 185 | $h = $this->image->getImageHeight(); |
@@ -267,8 +264,7 @@ discard block |
||
| 267 | 264 | $wmimage = clone self::$wmimg; |
| 268 | 265 | $wmimage->resizeImage( $ww, $wh, \Imagick::FILTER_CUBIC, 0.8 ); |
| 269 | 266 | self::$wmimages[$ww . 'x' . $wh] = $wmimage; |
| 270 | - } |
|
| 271 | - else |
|
| 267 | + } else |
|
| 272 | 268 | { |
| 273 | 269 | $wmimage = self::$wmimages[$ww . 'x' . $wh]; |
| 274 | 270 | } |
@@ -142,9 +142,9 @@ |
||
| 142 | 142 | $orderProduct->getPrice()->setTaxrate( $taxrate ); |
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - foreach ( $order->getServices() as $orderServiceGroup ) { |
|
| 146 | - foreach ( $orderServiceGroup as $orderService ) { |
|
| 147 | - $orderService->getPrice()->setTaxrate($taxrate); |
|
| 145 | + foreach( $order->getServices() as $orderServiceGroup ) { |
|
| 146 | + foreach( $orderServiceGroup as $orderService ) { |
|
| 147 | + $orderService->getPrice()->setTaxrate( $taxrate ); |
|
| 148 | 148 | } |
| 149 | 149 | } |
| 150 | 150 | |