1
0
mirror of https://github.com/flarum/core.git synced 2025-10-18 18:26:07 +02:00

DatabaseConfig: Implement Arrayable contract

This commit is contained in:
Franz Liedke
2019-02-01 13:00:07 +01:00
parent af185fd3d1
commit 968152b740
5 changed files with 9 additions and 7 deletions

View File

@@ -56,7 +56,7 @@ class StoreConfig implements Step, ReversibleStep
{
return [
'debug' => $this->debugMode,
'database' => $this->dbConfig->getConfig(),
'database' => $this->dbConfig->toArray(),
'url' => $this->baseUrl,
'paths' => $this->getPathsConfig(),
];