Skip to content

Commit d01f9ed

Browse files
authored
Merge pull request #94 from magento-engcom/MAGETWO-65003-PR-8077
MAGETWO-65003: [GitHub][PR] Type cast #8077
2 parents da7a7c4 + 4ab76db commit d01f9ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/code/Magento/Config/Model/Config/Backend/Currency/AbstractCurrency.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ protected function _getAllowedCurrencies()
3232
)
3333
);
3434
}
35-
return $this->getData('groups/options/fields/allow/value');
35+
36+
return (array)$this->getData('groups/options/fields/allow/value');
3637
}
3738

3839
/**

0 commit comments

Comments
 (0)