diff options
author | Robin Appelman <robin@icewind.nl> | 2021-02-26 20:22:08 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-03-03 10:43:15 +0100 |
commit | 47dd8e54b5d05d44596daccd64d50b645e275b19 (patch) | |
tree | 7fd1d6c842d15b10dfa25703899873a925ed93f8 /lib/public/DB | |
parent | 49c46493d1c4fab800bcb26e63bc979907cd20f7 (diff) | |
download | nextcloud-server-47dd8e54b5d05d44596daccd64d50b645e275b19.tar.gz nextcloud-server-47dd8e54b5d05d44596daccd64d50b645e275b19.zip |
allow non string join conditions in query builder
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/public/DB')
-rw-r--r-- | lib/public/DB/QueryBuilder/IQueryBuilder.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/DB/QueryBuilder/IQueryBuilder.php b/lib/public/DB/QueryBuilder/IQueryBuilder.php index e63df8a9024..0a5d42e48c5 100644 --- a/lib/public/DB/QueryBuilder/IQueryBuilder.php +++ b/lib/public/DB/QueryBuilder/IQueryBuilder.php @@ -471,7 +471,7 @@ interface IQueryBuilder { * @param string $fromAlias The alias that points to a from clause. * @param string $join The table name to join. * @param string $alias The alias of the join table. - * @param string $condition The condition for the join. + * @param string|ICompositeExpression|null $condition The condition for the join. * * @return $this This QueryBuilder instance. * @since 8.2.0 @@ -496,7 +496,7 @@ interface IQueryBuilder { * @param string $fromAlias The alias that points to a from clause. * @param string $join The table name to join. * @param string $alias The alias of the join table. - * @param string $condition The condition for the join. + * @param string|ICompositeExpression|null $condition The condition for the join. * * @return $this This QueryBuilder instance. * @since 8.2.0 @@ -521,7 +521,7 @@ interface IQueryBuilder { * @param string $fromAlias The alias that points to a from clause. * @param string $join The table name to join. * @param string $alias The alias of the join table. - * @param string $condition The condition for the join. + * @param string|ICompositeExpression|null $condition The condition for the join. * * @return $this This QueryBuilder instance. * @since 8.2.0 @@ -546,7 +546,7 @@ interface IQueryBuilder { * @param string $fromAlias The alias that points to a from clause. * @param string $join The table name to join. * @param string $alias The alias of the join table. - * @param string $condition The condition for the join. + * @param string|ICompositeExpression|null $condition The condition for the join. * * @return $this This QueryBuilder instance. * @since 8.2.0 |