Skip to content

Commit 9c23ff2

Browse files
committed
Additional changes to fix coding standard
1 parent b47fa78 commit 9c23ff2

File tree

1 file changed

+2
-3
lines changed
  • app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency

1 file changed

+2
-3
lines changed

app/code/Magento/CurrencySymbol/Controller/Adminhtml/System/Currency/SaveRates.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ public function execute()
2121
try {
2222
foreach ($data as $currencyCode => $rate) {
2323
foreach ($rate as $currencyTo => $value) {
24-
$value = abs($this->_objectManager->get(
25-
\Magento\Framework\Locale\FormatInterface::class)->getNumber($value)
26-
);
24+
$value = abs($this->_objectManager->get(\Magento\Framework\Locale\FormatInterface::class)
25+
->getNumber($value));
2726
$data[$currencyCode][$currencyTo] = $value;
2827
if ($value == 0) {
2928
$this->messageManager->addWarning(

0 commit comments

Comments
 (0)