From 7f1b4426ace6ab2643c57df31e40384798864eb0 Mon Sep 17 00:00:00 2001 From: MathiasReker Date: Sun, 23 Dec 2018 04:26:55 +0100 Subject: [PATCH] Trailing comma in multiline array --- ps_cashondelivery.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ps_cashondelivery.php b/ps_cashondelivery.php index 112252d991..fd494e01d6 100755 --- a/ps_cashondelivery.php +++ b/ps_cashondelivery.php @@ -125,12 +125,12 @@ public function hookPaymentReturn($params) ), 'status' => 'ok', 'reference' => $params['order']->reference, - 'contact_url' => $this->context->link->getPageLink('contact', true) + 'contact_url' => $this->context->link->getPageLink('contact', true), )); } else { $this->smarty->assign(array( 'status' => 'failed', - 'contact_url' => $this->context->link->getPageLink('contact', true) + 'contact_url' => $this->context->link->getPageLink('contact', true), )); } return $this->fetch('module:ps_cashondelivery/views/templates/hook/payment_return.tpl');