diff --git a/app/Support/Twig/AmountFormat.php b/app/Support/Twig/AmountFormat.php index 89ff951b5b..7cc70d7dd4 100644 --- a/app/Support/Twig/AmountFormat.php +++ b/app/Support/Twig/AmountFormat.php @@ -90,7 +90,7 @@ class AmountFormat extends Twig_Extension $currencyRepos = app(CurrencyRepositoryInterface::class); $currency = app('amount')->getDefaultCurrency(); $currencyId = (int)$accountRepos->getMetaValue($account, 'currency_id'); - $accountCurrency = null + $accountCurrency = null; if (0 !== $currencyId) { $accountCurrency = $currencyRepos->findNull($currencyId); }