From e779b89bfb9a07fe5c8d28f13debbe8ff3f969dc Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Tue, 19 Dec 2017 23:48:38 +0100 Subject: [PATCH] Fix previous commit Prevent `flarum.config` from being bound in the container when the software has not been installed yet. --- framework/core/src/Foundation/Site.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/core/src/Foundation/Site.php b/framework/core/src/Foundation/Site.php index 3c73b643a..a86f7d6e1 100644 --- a/framework/core/src/Foundation/Site.php +++ b/framework/core/src/Foundation/Site.php @@ -65,7 +65,7 @@ class Site /** * @var array */ - protected $config = []; + protected $config; protected $extenders = [];