From 7110c1178afad69fa31e637d3a0f7b5f21be9170 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 30 Mar 2018 22:49:46 +0200 Subject: [PATCH] Fix bad parse error. --- app/Support/Twig/AmountFormat.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }