@@ -219,7 +219,7 @@ |
||
| 219 | 219 | |
| 220 | 220 | $keys = (array) $keys; |
| 221 | 221 | $acols = $cols = $expr = []; |
| 222 | - $search = (clone $search)->slice( $search->getOffset(), min( $search->getLimit(), $limit ) ); |
|
| 222 | + $search = ( clone $search )->slice( $search->getOffset(), min( $search->getLimit(), $limit ) ); |
|
| 223 | 223 | |
| 224 | 224 | foreach( $keys as $string ) |
| 225 | 225 | { |
@@ -129,8 +129,7 @@ discard block |
||
| 129 | 129 | |
| 130 | 130 | $names .= '"' . $name . '", '; $values .= '?, '; |
| 131 | 131 | } |
| 132 | - } |
|
| 133 | - else |
|
| 132 | + } else |
|
| 134 | 133 | { |
| 135 | 134 | foreach( $columns as $name ) |
| 136 | 135 | { |
@@ -294,8 +293,7 @@ discard block |
||
| 294 | 293 | { |
| 295 | 294 | $parts = array_slice( explode( '.', $attrcode ), 0, -1 ) ?: $this->type(); |
| 296 | 295 | $str = 'm' . substr( (string) array_shift( $parts ), 0, 3 ); |
| 297 | - } |
|
| 298 | - else |
|
| 296 | + } else |
|
| 299 | 297 | { |
| 300 | 298 | $parts = $this->type(); |
| 301 | 299 | $str = 'm' . substr( (string) array_shift( $parts ), 0, 3 ); |
@@ -966,8 +964,7 @@ discard block |
||
| 966 | 964 | */ |
| 967 | 965 | $path = $this->getConfigKey( 'insert', 'mshop/common/manager/insert' ); |
| 968 | 966 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 969 | - } |
|
| 970 | - else |
|
| 967 | + } else |
|
| 971 | 968 | { |
| 972 | 969 | /** mshop/common/manager/update/mysql |
| 973 | 970 | * Updates an existing record in the database |
@@ -237,27 +237,27 @@ discard block |
||
| 237 | 237 | */ |
| 238 | 238 | |
| 239 | 239 | /** mshop/group/manager/submanagers |
| 240 | - * List of manager names that can be instantiated by the group manager |
|
| 241 | - * |
|
| 242 | - * Managers provide a generic interface to the underlying storage. |
|
| 243 | - * Each manager has or can have sub-managers caring about particular |
|
| 244 | - * aspects. Each of these sub-managers can be instantiated by its |
|
| 245 | - * parent manager using the getSubManager() method. |
|
| 246 | - * |
|
| 247 | - * The search keys from sub-managers can be normally used in the |
|
| 248 | - * manager as well. It allows you to search for items of the manager |
|
| 249 | - * using the search keys of the sub-managers to further limit the |
|
| 250 | - * retrieved list of items. |
|
| 251 | - * |
|
| 252 | - * @param array List of sub-manager names |
|
| 253 | - * @since 2024.04 |
|
| 254 | - */ |
|
| 240 | + * List of manager names that can be instantiated by the group manager |
|
| 241 | + * |
|
| 242 | + * Managers provide a generic interface to the underlying storage. |
|
| 243 | + * Each manager has or can have sub-managers caring about particular |
|
| 244 | + * aspects. Each of these sub-managers can be instantiated by its |
|
| 245 | + * parent manager using the getSubManager() method. |
|
| 246 | + * |
|
| 247 | + * The search keys from sub-managers can be normally used in the |
|
| 248 | + * manager as well. It allows you to search for items of the manager |
|
| 249 | + * using the search keys of the sub-managers to further limit the |
|
| 250 | + * retrieved list of items. |
|
| 251 | + * |
|
| 252 | + * @param array List of sub-manager names |
|
| 253 | + * @since 2024.04 |
|
| 254 | + */ |
|
| 255 | 255 | |
| 256 | 256 | /** mshop/group/manager/insert/mysql |
| 257 | - * Inserts a new group record into the database table |
|
| 258 | - * |
|
| 259 | - * @see mshop/group/manager/insert/ansi |
|
| 260 | - */ |
|
| 257 | + * Inserts a new group record into the database table |
|
| 258 | + * |
|
| 259 | + * @see mshop/group/manager/insert/ansi |
|
| 260 | + */ |
|
| 261 | 261 | |
| 262 | 262 | /** mshop/group/manager/insert/ansi |
| 263 | 263 | * Inserts a new group record into the database table |
@@ -289,10 +289,10 @@ discard block |
||
| 289 | 289 | */ |
| 290 | 290 | |
| 291 | 291 | /** mshop/group/manager/update/mysql |
| 292 | - * Updates an existing group record in the database |
|
| 293 | - * |
|
| 294 | - * @see mshop/group/manager/update/ansi |
|
| 295 | - */ |
|
| 292 | + * Updates an existing group record in the database |
|
| 293 | + * |
|
| 294 | + * @see mshop/group/manager/update/ansi |
|
| 295 | + */ |
|
| 296 | 296 | |
| 297 | 297 | /** mshop/group/manager/update/ansi |
| 298 | 298 | * Updates an existing group record in the database |
@@ -265,8 +265,7 @@ |
||
| 265 | 265 | */ |
| 266 | 266 | $path = 'mshop/locale/manager/currency/insert'; |
| 267 | 267 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 268 | - } |
|
| 269 | - else |
|
| 268 | + } else |
|
| 270 | 269 | { |
| 271 | 270 | /** mshop/locale/manager/currency/update/mysql |
| 272 | 271 | * Updates an existing currency record in the database |
@@ -264,8 +264,7 @@ |
||
| 264 | 264 | */ |
| 265 | 265 | $path = 'mshop/locale/manager/language/insert'; |
| 266 | 266 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 267 | - } |
|
| 268 | - else |
|
| 267 | + } else |
|
| 269 | 268 | { |
| 270 | 269 | /** mshop/locale/manager/language/update/mysql |
| 271 | 270 | * Updates an existing language record in the database |
@@ -158,8 +158,7 @@ |
||
| 158 | 158 | { |
| 159 | 159 | $path = 'mshop/customer/manager/address/insert'; |
| 160 | 160 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
| 161 | - } |
|
| 162 | - else |
|
| 161 | + } else |
|
| 163 | 162 | { |
| 164 | 163 | $path = 'mshop/customer/manager/address/update'; |
| 165 | 164 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ), false ); |
@@ -161,8 +161,7 @@ |
||
| 161 | 161 | $search->compare( '==', $domain . '.lists.domain', $key ), |
| 162 | 162 | $search->compare( '==', $domain . '.lists.type', $type ), |
| 163 | 163 | ] ); |
| 164 | - } |
|
| 165 | - else |
|
| 164 | + } else |
|
| 166 | 165 | { |
| 167 | 166 | $type = !strncmp( $type, $domain . '/', $len + 1 ) ? [$type, substr( $type, $len + 1 )] : $type; // remove prefix |
| 168 | 167 | $list[] = $search->compare( '==', $domain . '.lists.domain', $type ); |
@@ -635,5 +635,5 @@ |
||
| 635 | 635 | * @see mshop/attribute/manager/newid/ansi |
| 636 | 636 | * @see mshop/attribute/manager/delete/ansi |
| 637 | 637 | * @see mshop/attribute/manager/search/ansi |
| 638 | - */ |
|
| 638 | + */ |
|
| 639 | 639 | } |
@@ -612,9 +612,13 @@ |
||
| 612 | 612 | { |
| 613 | 613 | if( empty( $item->getInvoiceNumber() ) && $item->getStatusPayment() >= \Aimeos\MShop\Order\Item\Base::PAY_PENDING ) |
| 614 | 614 | { |
| 615 | - try { |
|
| 615 | + try |
|
| 616 | + { |
|
| 616 | 617 | $item->setInvoiceNumber( $this->createInvoiceNumber( $item ) ); |
| 617 | - } catch( \Exception $e ) { // redo on transaction deadlock |
|
| 618 | + } |
|
| 619 | + catch( \Exception $e ) |
|
| 620 | + { |
|
| 621 | +// redo on transaction deadlock |
|
| 618 | 622 | $item->setInvoiceNumber( $this->createInvoiceNumber( $item ) ); |
| 619 | 623 | } |
| 620 | 624 | } |
@@ -89,9 +89,11 @@ |
||
| 89 | 89 | return map(); |
| 90 | 90 | } |
| 91 | 91 | |
| 92 | - if( self::$lastRefresh < ( $time = time() ) - 60 ) // clear cache regularly for Laravel Octane |
|
| 92 | + if( self::$lastRefresh < ( $time = time() ) - 60 ) { |
|
| 93 | + // clear cache regularly for Laravel Octane |
|
| 93 | 94 | { |
| 94 | 95 | self::$lastRefresh = $time; |
| 96 | + } |
|
| 95 | 97 | self::$siteInactive = []; |
| 96 | 98 | } |
| 97 | 99 | |