From ab42c3bc8bf2ec570eec797068f195d675544852 Mon Sep 17 00:00:00 2001 From: Daniel Klabbers Date: Wed, 1 Nov 2017 17:01:50 +0100 Subject: [PATCH] fixed an issue where the mail provider would not be able to instantiate --- framework/core/src/Settings/DatabaseSettingsRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Settings/DatabaseSettingsRepository.php b/framework/core/src/Settings/DatabaseSettingsRepository.php index 943342d6b..d0700a8e5 100644 --- a/framework/core/src/Settings/DatabaseSettingsRepository.php +++ b/framework/core/src/Settings/DatabaseSettingsRepository.php @@ -24,7 +24,7 @@ class DatabaseSettingsRepository implements SettingsRepositoryInterface public function all() { - return $this->database->table('settings')->pluck('value', 'key'); + return $this->database->table('settings')->pluck('value', 'key')->all(); } public function get($key, $default = null)