Skip to content

Commit

Permalink
Fixed line exceeds issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
gelanivishal committed Jun 7, 2018
1 parent ea16687 commit 8a4d966
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/internal/Magento/Framework/Locale/Format.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,10 @@ public function getPriceFormat($localeCode = null, $currencyCode = null)
$currency = $this->_scopeResolver->getScope()->getCurrentCurrency();
}

$formatter = new \NumberFormatter($localeCode . '@currency=' . $currency->getCode(), \NumberFormatter::CURRENCY);
$formatter = new \NumberFormatter(
$localeCode . '@currency=' . $currency->getCode(),
\NumberFormatter::CURRENCY
);
$format = $formatter->getPattern();
$decimalSymbol = $formatter->getSymbol(\NumberFormatter::DECIMAL_SEPARATOR_SYMBOL);
$groupSymbol = $formatter->getSymbol(\NumberFormatter::GROUPING_SEPARATOR_SYMBOL);
Expand Down

0 comments on commit 8a4d966

Please sign in to comment.