Use execute instead of executeStatement

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
This commit is contained in:
Lukas Reschke 2021-06-22 13:54:03 +02:00 committed by backportbot[bot]
parent e757a5ecfd
commit ba12eb7aba

View file

@ -96,6 +96,6 @@ class PublicKeyCredentialMapper extends QBMapper {
->where(
$qb->expr()->eq('uid', $qb->createNamedParameter($uid))
);
$qb->executeStatement();
$qb->execute();
}
}