You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -407,7 +410,7 @@ public function match($patterns): self
407
410
/**
408
411
* Creates the RETURN clause.
409
412
*
410
-
* @param AnyType|Alias|Pattern|int|float|string|bool|array|AnyType[]|Alias[]|Pattern[]|int[]|float[]|string[]|bool[]|array[] $expressions The expressions to return
413
+
* @param AnyType|Alias|Pattern|int|float|string|bool|array|(AnyType|Alias|Pattern|int|float|string|bool|array)[] $expressions The expressions to return
411
414
* @param bool $distinct Whether to be a RETURN DISTINCT query
412
415
*
413
416
* @return $this
@@ -420,6 +423,7 @@ public function returning($expressions, bool $distinct = false): self
@@ -689,7 +693,7 @@ public function where($expressions, string $operator = WhereClause::AND): self
689
693
/**
690
694
* Creates the WITH clause.
691
695
*
692
-
* @param AnyType|Alias|Pattern|int|float|string|bool|array|AnyType[]|Alias[]|Pattern[]|int[]|float[]|string[]|bool[]|array[] $expressions The entries to add; if the array-key is non-numerical, it is used as the alias
696
+
* @param AnyType|Alias|Pattern|int|float|string|bool|array|(AnyType|Alias|Pattern|int|float|string|bool|array)[] $expressions The entries to add; if the array-key is non-numerical, it is used as the alias
693
697
*
694
698
* @return $this
695
699
*
@@ -701,6 +705,7 @@ public function with($expressions): self
0 commit comments