Fix return type

This commit is contained in:
James Cole 2017-10-30 16:25:46 +01:00
parent 60b7157a97
commit 0bb46dd184
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -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'));
}
}