fixed an issue where the mail provider would not be able to instantiate

This commit is contained in:
Daniel Klabbers 2017-11-01 17:01:50 +01:00
parent 44e9007790
commit a8f8ca7f87

View File

@ -24,7 +24,7 @@ class DatabaseSettingsRepository implements SettingsRepositoryInterface
public function all() 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) public function get($key, $default = null)