@@ -619,8 +619,7 @@ |
||
| 619 | 619 | */ |
| 620 | 620 | $path = 'mshop/customer/manager/insert'; |
| 621 | 621 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 622 | - } |
|
| 623 | - else |
|
| 622 | + } else |
|
| 624 | 623 | { |
| 625 | 624 | /** mshop/customer/manager/update/mysql |
| 626 | 625 | * Updates an existing customer record in the database |
@@ -455,8 +455,7 @@ |
||
| 455 | 455 | */ |
| 456 | 456 | $path = 'mshop/supplier/manager/insert'; |
| 457 | 457 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 458 | - } |
|
| 459 | - else |
|
| 458 | + } else |
|
| 460 | 459 | { |
| 461 | 460 | /** mshop/supplier/manager/update/mysql |
| 462 | 461 | * Updates an existing supplier record in the database |
@@ -428,8 +428,7 @@ |
||
| 428 | 428 | */ |
| 429 | 429 | $path = 'mshop/review/manager/insert'; |
| 430 | 430 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 431 | - } |
|
| 432 | - else |
|
| 431 | + } else |
|
| 433 | 432 | { |
| 434 | 433 | /** mshop/review/manager/update/mysql |
| 435 | 434 | * Updates an existing review record in the database |
@@ -385,8 +385,7 @@ |
||
| 385 | 385 | */ |
| 386 | 386 | $path = 'mshop/coupon/manager/insert'; |
| 387 | 387 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 388 | - } |
|
| 389 | - else |
|
| 388 | + } else |
|
| 390 | 389 | { |
| 391 | 390 | /** mshop/coupon/manager/update/mysql |
| 392 | 391 | * Updates an existing coupon record in the database |
@@ -478,8 +478,7 @@ |
||
| 478 | 478 | */ |
| 479 | 479 | $path = 'mshop/attribute/manager/insert'; |
| 480 | 480 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 481 | - } |
|
| 482 | - else |
|
| 481 | + } else |
|
| 483 | 482 | { |
| 484 | 483 | /** mshop/attribute/manager/update/mysql |
| 485 | 484 | * Updates an existing attribute record in the database |
@@ -759,8 +759,7 @@ |
||
| 759 | 759 | */ |
| 760 | 760 | $path = 'mshop/product/manager/insert'; |
| 761 | 761 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 762 | - } |
|
| 763 | - else |
|
| 762 | + } else |
|
| 764 | 763 | { |
| 765 | 764 | /** mshop/product/manager/update/mysql |
| 766 | 765 | * Updates an existing product record in the database |
@@ -416,8 +416,7 @@ |
||
| 416 | 416 | */ |
| 417 | 417 | $path = 'mshop/coupon/manager/code/insert'; |
| 418 | 418 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 419 | - } |
|
| 420 | - else |
|
| 419 | + } else |
|
| 421 | 420 | { |
| 422 | 421 | /** mshop/coupon/manager/code/update/mysql |
| 423 | 422 | * Updates an existing coupon code record in the database |
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | $this->removeItems( $item->getId(), 'catalog/lists', 'catalog', 'text' ); |
| 64 | 64 | $this->removeListItems( $item->getId(), 'catalog/lists', 'product' ); |
| 65 | 65 | } |
| 66 | - catch( \Exception $e ) { ; } // If no root node was already inserted into the database |
|
| 66 | + catch( \Exception $e ) {; } // If no root node was already inserted into the database |
|
| 67 | 67 | |
| 68 | 68 | $search = $manager->filter(); |
| 69 | 69 | $search->add( $search->and( [ |
@@ -63,7 +63,9 @@ |
||
| 63 | 63 | $this->removeItems( $item->getId(), 'catalog/lists', 'catalog', 'text' ); |
| 64 | 64 | $this->removeListItems( $item->getId(), 'catalog/lists', 'product' ); |
| 65 | 65 | } |
| 66 | - catch( \Exception $e ) { ; } // If no root node was already inserted into the database |
|
| 66 | + catch( \Exception $e ) |
|
| 67 | + { |
|
| 68 | +; } // If no root node was already inserted into the database |
|
| 67 | 69 | |
| 68 | 70 | $search = $manager->filter(); |
| 69 | 71 | $search->add( $search->and( [ |
@@ -112,9 +112,13 @@ 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'] = $values['locale.language.siteid'] ?? $this->context()->locale()->getSiteId(); |
| 117 | - } catch( \Exception $e ) {} // if no locale item is available |
|
| 118 | + } |
|
| 119 | + catch( \Exception $e ) |
|
| 120 | + { |
|
| 121 | +} // if no locale item is available |
|
| 118 | 122 | |
| 119 | 123 | return $this->createItemBase( $values ); |
| 120 | 124 | } |
@@ -174,8 +178,7 @@ discard block |
||
| 174 | 178 | */ |
| 175 | 179 | $path = 'mshop/locale/manager/language/insert'; |
| 176 | 180 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 177 | - } |
|
| 178 | - else |
|
| 181 | + } else |
|
| 179 | 182 | { |
| 180 | 183 | /** mshop/locale/manager/language/update/mysql |
| 181 | 184 | * Updates an existing language record in the database |