@@ -139,8 +139,7 @@ discard block |
||
| 139 | 139 | foreach( $columns as $name ) { |
| 140 | 140 | $names .= '"' . $name . '", '; $values .= '?, '; |
| 141 | 141 | } |
| 142 | - } |
|
| 143 | - else |
|
| 142 | + } else |
|
| 144 | 143 | { |
| 145 | 144 | foreach( $columns as $name ) { |
| 146 | 145 | $names .= '"' . $name . '" = ?, '; |
@@ -921,8 +920,7 @@ discard block |
||
| 921 | 920 | */ |
| 922 | 921 | $path = $this->getConfigKey( 'insert' ); |
| 923 | 922 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 924 | - } |
|
| 925 | - else |
|
| 923 | + } else |
|
| 926 | 924 | { |
| 927 | 925 | /** mshop/common/manager/update/mysql |
| 928 | 926 | * Updates an existing record in the database |
@@ -137,8 +137,7 @@ |
||
| 137 | 137 | $msg = $this->context()->translate( 'mshop', 'Unable to open file "%1$s"' ); |
| 138 | 138 | throw new \RuntimeException( sprintf( $msg, $file ) ); |
| 139 | 139 | } |
| 140 | - } |
|
| 141 | - else |
|
| 140 | + } else |
|
| 142 | 141 | { |
| 143 | 142 | $fh = $this->context()->fs( $fsname )->reads( $file ); |
| 144 | 143 | } |
@@ -128,7 +128,7 @@ |
||
| 128 | 128 | $this->removeRefItems( map( $item ), $domains ); |
| 129 | 129 | $manager->save( $item ); |
| 130 | 130 | } |
| 131 | - catch( \Exception $e ) { ; } // If no root node was already inserted into the database |
|
| 131 | + catch( \Exception $e ) {; } // If no root node was already inserted into the database |
|
| 132 | 132 | |
| 133 | 133 | $filter = $manager->filter() |
| 134 | 134 | ->add( 'catalog.code', '=~', 'demo-' ) |
@@ -77,9 +77,12 @@ discard block |
||
| 77 | 77 | $context = $this->context(); |
| 78 | 78 | $manager = \Aimeos\MShop::create( $context, 'catalog' ); |
| 79 | 79 | |
| 80 | - try { |
|
| 80 | + try |
|
| 81 | + { |
|
| 81 | 82 | $item = $manager->getTree( null, ['media', 'text'], \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE ); |
| 82 | - } catch( \Exception $e ) { |
|
| 83 | + } |
|
| 84 | + catch( \Exception $e ) |
|
| 85 | + { |
|
| 83 | 86 | $item = $manager->insert( $manager->create()->fromArray( $data ) ); |
| 84 | 87 | } |
| 85 | 88 | |
@@ -128,7 +131,9 @@ discard block |
||
| 128 | 131 | $this->removeRefItems( map( $item ), $domains ); |
| 129 | 132 | $manager->save( $item ); |
| 130 | 133 | } |
| 131 | - catch( \Exception $e ) { ; } // If no root node was already inserted into the database |
|
| 134 | + catch( \Exception $e ) |
|
| 135 | + { |
|
| 136 | +; } // If no root node was already inserted into the database |
|
| 132 | 137 | |
| 133 | 138 | $filter = $manager->filter() |
| 134 | 139 | ->add( 'catalog.code', '=~', 'demo-' ) |
@@ -87,7 +87,7 @@ |
||
| 87 | 87 | |
| 88 | 88 | try { |
| 89 | 89 | $refItem = $refManager->find( $refItem->getCode(), [], $item->getResourceType(), $refItem->getType() ); |
| 90 | - } catch( \Exception $e ) { ; } // if not found, use the new item |
|
| 90 | + } catch( \Exception $e ) {; } // if not found, use the new item |
|
| 91 | 91 | |
| 92 | 92 | $refItem = $this->addRefItems( $refItem, $data ); |
| 93 | 93 | $item->addListItem( 'attribute', $listItem, $refItem ); |
@@ -85,9 +85,13 @@ |
||
| 85 | 85 | $listItem = $manager->createListItem()->setPosition( $idx )->fromArray( $data ); |
| 86 | 86 | $refItem = $refManager->create()->fromArray( $data ); |
| 87 | 87 | |
| 88 | - try { |
|
| 88 | + try |
|
| 89 | + { |
|
| 89 | 90 | $refItem = $refManager->find( $refItem->getCode(), [], $item->getResourceType(), $refItem->getType() ); |
| 90 | - } catch( \Exception $e ) { ; } // if not found, use the new item |
|
| 91 | + } |
|
| 92 | + catch( \Exception $e ) |
|
| 93 | + { |
|
| 94 | +; } // if not found, use the new item |
|
| 91 | 95 | |
| 92 | 96 | $refItem = $this->addRefItems( $refItem, $data ); |
| 93 | 97 | $item->addListItem( 'attribute', $listItem, $refItem ); |