@@ -650,8 +650,7 @@ |
||
650 | 650 | */ |
651 | 651 | $path = 'mshop/order/manager/service/insert'; |
652 | 652 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
653 | - } |
|
654 | - else |
|
653 | + } else |
|
655 | 654 | { |
656 | 655 | /** mshop/order/manager/service/update/mysql |
657 | 656 | * Updates an existing order record in the database |
@@ -528,8 +528,7 @@ |
||
528 | 528 | */ |
529 | 529 | $path = 'mshop/order/manager/service/transaction/insert'; |
530 | 530 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
531 | - } |
|
532 | - else |
|
531 | + } else |
|
533 | 532 | { |
534 | 533 | /** mshop/order/manager/service/transaction/update/mysql |
535 | 534 | * Updates an existing order record in the database |
@@ -535,8 +535,7 @@ |
||
535 | 535 | */ |
536 | 536 | $path = 'mshop/order/manager/product/attribute/insert'; |
537 | 537 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
538 | - } |
|
539 | - else |
|
538 | + } else |
|
540 | 539 | { |
541 | 540 | /** mshop/order/manager/product/attribute/update/mysql |
542 | 541 | * Updates an existing order record in the database |
@@ -800,8 +800,7 @@ |
||
800 | 800 | */ |
801 | 801 | $path = 'mshop/order/manager/product/insert'; |
802 | 802 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
803 | - } |
|
804 | - else |
|
803 | + } else |
|
805 | 804 | { |
806 | 805 | /** mshop/order/manager/product/update/mysql |
807 | 806 | * Updates an existing order record in the database |
@@ -500,8 +500,7 @@ |
||
500 | 500 | */ |
501 | 501 | $path = 'mshop/order/manager/coupon/insert'; |
502 | 502 | $sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) ); |
503 | - } |
|
504 | - else |
|
503 | + } else |
|
505 | 504 | { |
506 | 505 | /** mshop/order/manager/coupon/update/mysql |
507 | 506 | * Updates an existing order record in the database |
@@ -815,7 +815,7 @@ discard block |
||
815 | 815 | |
816 | 816 | foreach( $price->getTaxrates() as $name => $taxrate ) |
817 | 817 | { |
818 | - $price = (clone $price)->setTaxRate( $taxrate ); |
|
818 | + $price = ( clone $price )->setTaxRate( $taxrate ); |
|
819 | 819 | |
820 | 820 | if( isset( $taxes[$name][$taxrate] ) ) { |
821 | 821 | $taxes[$name][$taxrate]->addItem( $price, $product->getQuantity() ); |
@@ -833,7 +833,7 @@ discard block |
||
833 | 833 | |
834 | 834 | foreach( $price->getTaxrates() as $name => $taxrate ) |
835 | 835 | { |
836 | - $price = (clone $price)->setTaxRate( $taxrate ); |
|
836 | + $price = ( clone $price )->setTaxRate( $taxrate ); |
|
837 | 837 | |
838 | 838 | if( isset( $taxes[$name][$taxrate] ) ) { |
839 | 839 | $taxes[$name][$taxrate]->addItem( $price ); |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | protected function address() |
27 | 27 | { |
28 | - $db =$this->db( 'db-order' ); |
|
28 | + $db = $this->db( 'db-order' ); |
|
29 | 29 | |
30 | 30 | if( !$db->hasColumn( 'mshop_order_base_address', 'baseid' ) ) { |
31 | 31 | return $this; |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | protected function coupon() |
53 | 53 | { |
54 | - $db =$this->db( 'db-order' ); |
|
54 | + $db = $this->db( 'db-order' ); |
|
55 | 55 | |
56 | 56 | if( !$db->hasColumn( 'mshop_order_base_coupon', 'baseid' ) ) { |
57 | 57 | return $this; |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | |
77 | 77 | protected function product() |
78 | 78 | { |
79 | - $db =$this->db( 'db-order' ); |
|
79 | + $db = $this->db( 'db-order' ); |
|
80 | 80 | |
81 | 81 | if( !$db->hasColumn( 'mshop_order_base_product', 'baseid' ) ) { |
82 | 82 | return $this; |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | |
103 | 103 | protected function service() |
104 | 104 | { |
105 | - $db =$this->db( 'db-order' ); |
|
105 | + $db = $this->db( 'db-order' ); |
|
106 | 106 | |
107 | 107 | if( !$db->hasColumn( 'mshop_order_base_service', 'baseid' ) ) { |
108 | 108 | return $this; |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | |
129 | 129 | protected function subscription() |
130 | 130 | { |
131 | - $db =$this->db( 'db-order' ); |
|
131 | + $db = $this->db( 'db-order' ); |
|
132 | 132 | |
133 | 133 | if( !$db->hasColumn( 'mshop_subscription', 'baseid' ) ) { |
134 | 134 | return $this; |