diff --git a/core/Command/Db/DbIndexUsage.php b/core/Command/Db/DbIndexUsage.php index 24cd41cc682..d5239083398 100644 --- a/core/Command/Db/DbIndexUsage.php +++ b/core/Command/Db/DbIndexUsage.php @@ -6,6 +6,7 @@ declare(strict_types=1); * SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ + namespace OC\Core\Command\Db; use Doctrine\DBAL\Platforms\MySQLPlatform; diff --git a/core/Command/Db/DbInfo.php b/core/Command/Db/DbInfo.php index 93fc02bea8d..f844e6fe652 100644 --- a/core/Command/Db/DbInfo.php +++ b/core/Command/Db/DbInfo.php @@ -6,6 +6,7 @@ declare(strict_types=1); * SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ + namespace OC\Core\Command\Db; use Doctrine\DBAL\Platforms\MySQLPlatform; diff --git a/core/Command/Db/DbLocks.php b/core/Command/Db/DbLocks.php index 29fe615250c..4bb336e9db8 100644 --- a/core/Command/Db/DbLocks.php +++ b/core/Command/Db/DbLocks.php @@ -6,6 +6,7 @@ declare(strict_types=1); * SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ + namespace OC\Core\Command\Db; use Doctrine\DBAL\Platforms\MySQLPlatform; diff --git a/core/Command/Db/DbSize.php b/core/Command/Db/DbSize.php index 36187b57e4f..ceec7d8c18e 100644 --- a/core/Command/Db/DbSize.php +++ b/core/Command/Db/DbSize.php @@ -6,6 +6,7 @@ declare(strict_types=1); * SPDX-FileCopyrightText: 2026 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ + namespace OC\Core\Command\Db; use Doctrine\DBAL\Platforms\MySQLPlatform; diff --git a/lib/private/SetupCheck/SetupCheckManager.php b/lib/private/SetupCheck/SetupCheckManager.php index 36ff25b481b..27fffa362bc 100644 --- a/lib/private/SetupCheck/SetupCheckManager.php +++ b/lib/private/SetupCheck/SetupCheckManager.php @@ -18,8 +18,8 @@ use Psr\Log\LoggerInterface; class SetupCheckManager implements ISetupCheckManager { public function __construct( - readonly private Coordinator $coordinator, - readonly private LoggerInterface $logger, + private readonly Coordinator $coordinator, + private readonly LoggerInterface $logger, ) { }