From ba12eb7aba2ce8ac6f0919ac7ca840a6f628292c Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Tue, 22 Jun 2021 13:54:03 +0200 Subject: [PATCH] Use execute instead of executeStatement Signed-off-by: Lukas Reschke --- .../Authentication/WebAuthn/Db/PublicKeyCredentialMapper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } }