summaryrefslogtreecommitdiffstats
path: root/lib/private/Authentication
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2021-06-22 13:54:03 +0200
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2021-06-22 13:53:28 +0000
commitba12eb7aba2ce8ac6f0919ac7ca840a6f628292c (patch)
tree6cf54bc66a60be96107b827d8cacbd91a0f8c012 /lib/private/Authentication
parente757a5ecfdcddbddc29edf0e61ba60de1181315b (diff)
downloadnextcloud-server-ba12eb7aba2ce8ac6f0919ac7ca840a6f628292c.tar.gz
nextcloud-server-ba12eb7aba2ce8ac6f0919ac7ca840a6f628292c.zip
Use execute instead of executeStatement
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'lib/private/Authentication')
-rw-r--r--lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php b/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php
index e2dd97db852..b2fd557f159 100644
--- a/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php
+++ b/lib/private/Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php
@@ -96,6 +96,6 @@ class PublicKeyCredentialMapper extends QBMapper {
->where(
$qb->expr()->eq('uid', $qb->createNamedParameter($uid))
);
- $qb->executeStatement();
+ $qb->execute();
}
}