diff options
-rw-r--r-- | core/Controller/SetupController.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/Controller/SetupController.php b/core/Controller/SetupController.php index 634ae93efb5..69c3b2f2a23 100644 --- a/core/Controller/SetupController.php +++ b/core/Controller/SetupController.php @@ -37,7 +37,9 @@ use OCP\ILogger; class SetupController { private string $autoConfigFile; - public function __construct(protected Setup $setupHelper) { + public function __construct( + protected Setup $setupHelper, + ) { $this->autoConfigFile = \OC::$configDir.'autoconfig.php'; } |