From 0bb46dd184717dd010ead7b6c590ca62627f6a2f Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 30 Oct 2017 16:25:46 +0100 Subject: [PATCH] Fix return type --- app/Support/Amount.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Support/Amount.php b/app/Support/Amount.php index 88cde7b105..bd60a13666 100644 --- a/app/Support/Amount.php +++ b/app/Support/Amount.php @@ -190,7 +190,7 @@ class Amount } $cache->store(config('firefly.default_currency', 'EUR')); - return config('firefly.default_currency', 'EUR'); + return strval(config('firefly.default_currency', 'EUR')); } }