Skip to content

Commit b47fa78

Browse files
committed
Fixed Closing parenthesis of a multi-line function call must be on a line by itself
1 parent 3a88958 commit b47fa78

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ public function execute()
2222
foreach ($data as $currencyCode => $rate) {
2323
foreach ($rate as $currencyTo => $value) {
2424
$value = abs($this->_objectManager->get(
25-
\Magento\Framework\Locale\FormatInterface::class)->getNumber($value));
25+
\Magento\Framework\Locale\FormatInterface::class)->getNumber($value)
26+
);
2627
$data[$currencyCode][$currencyTo] = $value;
2728
if ($value == 0) {
2829
$this->messageManager->addWarning(

0 commit comments

Comments
 (0)