aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorFaraz Samapoor <f.samapoor@gmail.com>2023-06-20 11:47:04 +0330
committerLouis <6653109+artonge@users.noreply.github.com>2023-06-20 10:38:46 +0200
commit4ce7173f7ed22a25dd8149421ca778e47a3b3c46 (patch)
treed3b01eff03b9e5b66b0b13a08d8cebf38d38afa7 /core
parent2800436948acbceb45362fc5cab7b2f5257caccd (diff)
downloadnextcloud-server-4ce7173f7ed22a25dd8149421ca778e47a3b3c46.tar.gz
nextcloud-server-4ce7173f7ed22a25dd8149421ca778e47a3b3c46.zip
Update core/Controller/SetupController.php
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
Diffstat (limited to 'core')
-rw-r--r--core/Controller/SetupController.php4
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';
}