Skip to content

Commit

Permalink
Merge pull request #19 from MathiasReker/trailing_comma_in_multiline_…
Browse files Browse the repository at this point in the history
…array

Trailing comma in multiline array
  • Loading branch information
Quetzacoalt91 authored Dec 24, 2018
2 parents 7d503ff + 7f1b442 commit 4d7ae01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ps_cashondelivery.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 4d7ae01

Please sign in to comment.