Skip to content

Commit

Permalink
Removed closing tags in setup scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
PX-BE1 RL committed Sep 14, 2017
1 parent e2a6986 commit 7db01d4
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 10 deletions.
4 changes: 2 additions & 2 deletions app/code/community/Phoenix/CashOnDelivery/Helper/Tax.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ public function getCalculatedTaxes($source)

private function _getCashOnDeliveryTax($current)
{
$codTaxInfo = [
$codTaxInfo = array(
'tax_amount' => $current->getCodTaxAmount(),
'base_tax_amount' => $current->getBaseCodTaxAmount(),
'title' => $this->__('Cash on Delivery Tax'),
'percent' => null
];
);

return $codTaxInfo;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,3 @@
$eav->addAttribute('invoice', 'base_cod_fee', array('type' => 'decimal'));

$this->endSetup();

?>
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,3 @@
$eav->addAttribute('invoice', 'base_cod_tax_amount', array('type' => 'decimal'));

$this->endSetup();

?>
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,3 @@
");

$this->endSetup();

?>
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,3 @@
$setup->addAttribute('quote_address', 'base_cod_tax_amount', array('type' => 'decimal'));

$this->endSetup();

?>

0 comments on commit 7db01d4

Please sign in to comment.