aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGit'Fellow <12234510+solracsf@users.noreply.github.com>2025-02-14 11:52:54 +0100
committerGit'Fellow <12234510+solracsf@users.noreply.github.com>2025-02-14 11:55:19 +0100
commit885175772bfdea32872b8e23beefb79402248c3f (patch)
treed8da7e064ba5599bc80c3c8f63e0ac38220f5202
parent20cedce95f9bca0233411b6b36d9efea1c7044a5 (diff)
downloadnextcloud-server-885175772bfdea32872b8e23beefb79402248c3f.tar.gz
nextcloud-server-885175772bfdea32872b8e23beefb79402248c3f.zip
fix(repair): PHP8.3 deprecation warningfixPhp83Deprecation
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
-rw-r--r--lib/private/Repair/Owncloud/MigrateOauthTables.php12
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/private/Repair/Owncloud/MigrateOauthTables.php b/lib/private/Repair/Owncloud/MigrateOauthTables.php
index 1e06d7101c1..cd5087cb588 100644
--- a/lib/private/Repair/Owncloud/MigrateOauthTables.php
+++ b/lib/private/Repair/Owncloud/MigrateOauthTables.php
@@ -1,8 +1,10 @@
<?php
+
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
+
namespace OC\Repair\Owncloud;
use OC\Authentication\Token\IProvider as ITokenProvider;
@@ -19,21 +21,15 @@ use OCP\Security\ICrypto;
use OCP\Security\ISecureRandom;
class MigrateOauthTables implements IRepairStep {
- /** @var Connection */
- protected $db;
- /**
- * @param Connection $db
- */
public function __construct(
- Connection $db,
+ protected Connection $db,
private AccessTokenMapper $accessTokenMapper,
private ITokenProvider $tokenProvider,
private ISecureRandom $random,
private ITimeFactory $timeFactory,
private ICrypto $crypto,
) {
- $this->db = $db;
}
/**
@@ -225,7 +221,7 @@ class MigrateOauthTables implements IRepairStep {
$row['user_id'],
$row['user_id'],
null,
- "oc_migrated_client${clientId}_t{$now}_i$index",
+ "oc_migrated_client{$clientId}_t{$now}_i$index",
IToken::PERMANENT_TOKEN,
IToken::DO_NOT_REMEMBER,
);