Add psalm annotation to the DB handlers of OAuth2

* Psalm annotations
* To new executeUpdate

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2021-03-11 14:33:15 +01:00
parent d090f970dd
commit c2f7c417b2
2 changed files with 7 additions and 1 deletions

View File

@ -34,6 +34,9 @@ use OCP\AppFramework\Db\QBMapper;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IDBConnection;
/**
* @template-extends QBMapper<AccessToken>
*/
class AccessTokenMapper extends QBMapper {
/**
@ -74,6 +77,6 @@ class AccessTokenMapper extends QBMapper {
$qb
->delete($this->tableName)
->where($qb->expr()->eq('client_id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT)));
$qb->execute();
$qb->executeUpdate();
}
}

View File

@ -34,6 +34,9 @@ use OCP\AppFramework\Db\QBMapper;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IDBConnection;
/**
* @template-extends QBMapper<Client>
*/
class ClientMapper extends QBMapper {
/**