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
Copy file name to clipboardExpand all lines: src/Expressions/Procedures/Procedure.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,8 +35,8 @@ abstract class Procedure implements QueryConvertible
35
35
* Produces a raw function call. This enables the usage of unimplemented functions in your
36
36
* Cypher queries. The parameters of this function are not type-checked.
37
37
*
38
-
* @param string $functionName The name of the function to call
39
-
* @param AnyType|AnyType[]|bool|bool[]|float|float[]|int|int[]|mixed[]|mixed[][]|Pattern|Pattern[]|string|string[] $parameters The parameters to pass to the function call
38
+
* @param string $functionName The name of the function to call
39
+
* @param AnyType|AnyType[]|bool|bool[]|float|float[]|int|int[]|mixed[]|mixed[][]|Pattern|Pattern[]|string|string[]|(AnyType|bool|float|int|mixed[]|Pattern|string)[] $parameters The parameters to pass to the function call
40
40
*/
41
41
publicstaticfunctionraw(string$functionName, $parameters): Raw
Copy file name to clipboardExpand all lines: src/Query.php
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -363,7 +363,7 @@ public function __toString(): string
363
363
* @note This feature is not part of the openCypher standard.
364
364
*
365
365
* @param callable|Query $query A callable decorating a Query, or an instance of Query
366
-
* @param Pattern|Pattern[]|string|string[]|Variable|Variable[] $variables The variables to include in the WITH clause for correlation (optional)
366
+
* @param Pattern|Pattern[]|string|string[]|Variable|Variable[]|(Pattern|string|Variable)[] $variables The variables to include in the WITH clause for correlation (optional)
367
367
*
368
368
* @return $this
369
369
*
@@ -397,7 +397,7 @@ public function call($query, $variables = []): self
397
397
* Creates the CALL procedure clause.
398
398
*
399
399
* @param Procedure $procedure The procedure to call
400
-
* @param Alias|Alias[]|string|string[]|Variable|Variable[] $yields The result fields that should be returned (optional)
400
+
* @param Alias|Alias[]|string|string[]|Variable|Variable[]|(Alias|string|Variable)[] $yields The result fields that should be returned (optional)
401
401
*
402
402
* @return $this
403
403
*
@@ -446,7 +446,7 @@ public function match($patterns): self
446
446
/**
447
447
* Creates the RETURN clause.
448
448
*
449
-
* @param Alias|Alias[]|AnyType|AnyType[]|array|bool|bool[]|float|float[]|int|int[]|Pattern|Pattern[]|string|string[] $expressions A single expression to return, or a non-empty list of expressions to return
449
+
* @param Alias|Alias[]|AnyType|AnyType[]|mixed[]|bool|bool[]|float|float[]|int|int[]|Pattern|Pattern[]|string|string[]|(Alias|AnyType|mixed[]|bool|float|int|Pattern|string)[] $expressions A single expression to return, or a non-empty list of expressions to return
450
450
* @param bool $distinct Whether to be a RETURN DISTINCT clause (optional, default: false)
451
451
*
452
452
* @return $this
@@ -496,7 +496,7 @@ public function create($patterns): self
496
496
/**
497
497
* Creates the DELETE clause.
498
498
*
499
-
* @param Pattern|Pattern[]|StructuralType|StructuralType[] $structures A single structure to delete, or a non-empty list of structures to delete
499
+
* @param Pattern|Pattern[]|StructuralType|StructuralType[]|(Pattern|StructuralType)[] $structures A single structure to delete, or a non-empty list of structures to delete
@@ -521,7 +521,7 @@ public function delete($structures, bool $detach = false): self
521
521
/**
522
522
* Creates the DETACH DELETE clause.
523
523
*
524
-
* @param Pattern|Pattern[]|StructuralType|StructuralType[] $structures A single structure to delete, or a non-empty list of structures to delete
524
+
* @param Pattern|Pattern[]|StructuralType|StructuralType[]|(Pattern|StructuralType)[] $structures A single structure to delete, or a non-empty list of structures to delete
525
525
*
526
526
* @return $this
527
527
*
@@ -644,7 +644,7 @@ public function orderBy($properties, bool $descending = false): self
644
644
/**
645
645
* Creates the REMOVE clause.
646
646
*
647
-
* @param Label|Label[]|Property|Property[] $expressions A single expression to remove, or a non-empty list of expressions to remove
647
+
* @param Label|Label[]|Property|Property[]|(Label|Property)[] $expressions A single expression to remove, or a non-empty list of expressions to remove
648
648
*
649
649
* @return $this
650
650
*
@@ -667,7 +667,7 @@ public function remove($expressions): self
667
667
/**
668
668
* Create the SET clause.
669
669
*
670
-
* @param Label|Label[]|PropertyReplacement|PropertyReplacement[] $expressions A single expression to set, or a non-empty list of expressions to set
670
+
* @param Label|Label[]|PropertyReplacement|PropertyReplacement[]|(Label|PropertyReplacement)[] $expressions A single expression to set, or a non-empty list of expressions to set
671
671
*
672
672
* @return $this
673
673
*
@@ -690,7 +690,7 @@ public function set($expressions): self
690
690
/**
691
691
* Creates the WHERE clause.
692
692
*
693
-
* @param bool|bool[]|BooleanType|BooleanType[] $expressions A boolean expression to evaluate, or a non-empty list of boolean expression to evaluate
693
+
* @param bool|bool[]|BooleanType|BooleanType[]|(bool|BooleanType)[] $expressions A boolean expression to evaluate, or a non-empty list of boolean expression to evaluate
694
694
* @param string $operator The operator with which to unify the given expressions, should be either WhereClause::OR,
695
695
* WhereClause::AND or WhereClause::XOR (optional, default: 'and')
696
696
*
@@ -718,7 +718,7 @@ public function where($expressions, string $operator = WhereClause::AND): self
718
718
/**
719
719
* Creates the WITH clause.
720
720
*
721
-
* @param Alias|Alias[]|AnyType|AnyType[]|bool|bool[]|float|float[]|int|int[]|mixed[]|mixed[][]|Pattern|Pattern[]|string|string[] $expressions An entry to add, or a non-empty list of entries to add; if the array-key is non-numerical, it is used as the alias
721
+
* @param Alias|Alias[]|AnyType|AnyType[]|bool|bool[]|float|float[]|int|int[]|mixed[]|mixed[][]|Pattern|Pattern[]|string|string[]|(Alias|AnyType|bool|float|int|mixed[]|Pattern|string)[] $expressions An entry to add, or a non-empty list of entries to add; if the array-key is non-numerical, it is used as the alias
0 commit comments