mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
fix(db): UndefinedConstant: Constant Doctrine\DBAL\Connection::PARAM_STR_ARRAY is not defined
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
72151b550c
commit
a20110bdc4
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue