fix(db): Don't use deprecated 3rdparty constant: `Doctrine\DBAL\Connection::PARAM_STR_ARRAY`

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/46605/head
Joas Schilling 2 years ago
parent c84580d53a
commit e9bfaf31b8
No known key found for this signature in database
GPG Key ID: 74434EFE0D2E2205
  1. 2
      apps/dav/lib/DAV/CustomPropertiesBackend.php

@ -411,7 +411,7 @@ class CustomPropertiesBackend implements BackendInterface {
// request only a subset
$sql .= ' AND `propertyname` in (?)';
$whereValues[] = $requestedProperties;
$whereTypes[] = \Doctrine\DBAL\Connection::PARAM_STR_ARRAY;
$whereTypes[] = IQueryBuilder::PARAM_STR_ARRAY;
}
$result = $this->connection->executeQuery(

Loading…
Cancel
Save