Skip to content

Commit 2375228

Browse files
committed
Fixed some PHPstan warning paypal catalog controller
1 parent 3068eb1 commit 2375228

File tree

1 file changed

+8
-4
lines changed
  • upload/catalog/controller/extension/payment

1 file changed

+8
-4
lines changed

upload/catalog/controller/extension/payment/paypal.php

+8-4
Original file line numberDiff line numberDiff line change
@@ -1050,7 +1050,7 @@ public function createOrder() {
10501050
$tax_total = number_format($tax_total * $currency_value, $decimal_place, '.', '');
10511051
$order_total = number_format($item_total + $tax_total, $decimal_place, '.', '');
10521052

1053-
if ($page_code == 'checkout') {
1053+
if ($page_code == 'checkout' && isset($order_info)) {
10541054
$discount_total = 0;
10551055
$handling_total = 0;
10561056
$shipping_total = 0;
@@ -1086,7 +1086,7 @@ public function createOrder() {
10861086
'value' => $tax_total
10871087
);
10881088

1089-
if ($page_code == 'checkout') {
1089+
if ($page_code == 'checkout' && isset($shipping_total) && isset($handling_total) && isset($discount_total) && isset($order_info) && isset($shipping_info)) {
10901090
$amount_info['breakdown']['shipping'] = array(
10911091
'currency_code' => $currency_code,
10921092
'value' => $shipping_total
@@ -1110,7 +1110,7 @@ public function createOrder() {
11101110
$paypal_order_info['purchase_units'][0]['items'] = $item_info;
11111111
$paypal_order_info['purchase_units'][0]['amount'] = $amount_info;
11121112

1113-
if ($page_code == 'checkout') {
1113+
if ($page_code == 'checkout' && isset($order_info)) {
11141114
$paypal_order_info['purchase_units'][0]['description'] = 'Your order ' . $order_info['order_id'];
11151115
$paypal_order_info['purchase_units'][0]['invoice_id'] = $order_info['order_id'] . '_' . date('Ymd_His');
11161116

@@ -2003,6 +2003,7 @@ public function approveOrder() {
20032003
$card_nice_type = (!empty($this->request->post['card_nice_type']) ? $this->request->post['card_nice_type'] : '');
20042004
$card_last_digits = '';
20052005
$card_expiry = '';
2006+
$paypal_order_data = array();
20062007

20072008
if (!$this->cart->hasShipping()) {
20082009
$seller_protection_status = 'NOT_ELIGIBLE';
@@ -2135,6 +2136,7 @@ public function approveOrder() {
21352136
$card_nice_type = (!empty($this->request->post['card_nice_type']) ? $this->request->post['card_nice_type'] : '');
21362137
$card_last_digits = '';
21372138
$card_expiry = '';
2139+
$paypal_order_data = array();
21382140

21392141
if (!$this->cart->hasShipping()) {
21402142
$seller_protection_status = 'NOT_ELIGIBLE';
@@ -3359,6 +3361,7 @@ public function completeOrder() {
33593361
$card_nice_type = '';
33603362
$card_last_digits = '';
33613363
$card_expiry = '';
3364+
$paypal_order_data = array();
33623365

33633366
if (!$this->cart->hasShipping()) {
33643367
$seller_protection_status = 'NOT_ELIGIBLE';
@@ -3491,6 +3494,7 @@ public function completeOrder() {
34913494
$card_nice_type = '';
34923495
$card_last_digits = '';
34933496
$card_expiry = '';
3497+
$paypal_order_data = array();
34943498

34953499
if (!$this->cart->hasShipping()) {
34963500
$seller_protection_status = 'NOT_ELIGIBLE';
@@ -3747,7 +3751,7 @@ public function completeOrder() {
37473751
$paypal_order_info['purchase_units'][0]['description'] = 'Your order ' . $this->session->data['order_id'];
37483752
$paypal_order_info['purchase_units'][0]['invoice_id'] = $this->session->data['order_id'] . '_' . date('Ymd_His');
37493753

3750-
if ($this->cart->hasShipping()) {
3754+
if ($this->cart->hasShipping() && isset($shipping_info)) {
37513755
$paypal_order_info['purchase_units'][0]['shipping'] = $shipping_info;
37523756
}
37533757

0 commit comments

Comments
 (0)