Skip to content

Commit

Permalink
Fix Code review failed
Browse files Browse the repository at this point in the history
  • Loading branch information
saranchuk-hys committed Sep 30, 2021
1 parent 39fccf3 commit f092dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Subscriber/CheckoutSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public function onCheckout(Enlight_Event_EventArgs $args)
'paymentFee' => Helpers::floatToPrice($paymentFee),
'isEncrypted' => $isEncrypted,
'buckarooExtraFields' => (!empty($userId)) ? $this->loadExtraFields() : null,
'vatId' => $this->session->sOrderVariables['sUserData']['billingaddress']['vatId'] ?? ''
'vatId' => $this->session->sOrderVariables['sUserData']['billingaddress']['vatId'] ? $this->session->sOrderVariables['sUserData']['billingaddress']['vatId'] : ''
]);
}

Expand Down

0 comments on commit f092dca

Please sign in to comment.