Skip to content

Commit 1b9a767

Browse files
miaulalalanextcloud-command
authored andcommitted
fix(theming): use fully-qualified \OCP\IConfig in Server.php DI
IConfig has no use-import in Server.php; the rest of the file uses \OCP\IConfig::class directly. Signed-off-by: Anna Larch <anna@nextcloud.com> AI-Assisted-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 32f22f9 commit 1b9a767

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/private/Server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1031,7 +1031,7 @@ public function __construct($webRoot, \OC\Config $config) {
10311031
$c->get(ITempManager::class),
10321032
$backgroundService,
10331033
new AppConfig(
1034-
$c->get(IConfig::class),
1034+
$c->get(\OCP\IConfig::class),
10351035
$c->get(IAppConfig::class),
10361036
'theming',
10371037
),

0 commit comments

Comments
 (0)