We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cd2aa48 + b7d8229 commit 656f881Copy full SHA for 656f881
lib/Doctrine/ORM/Tools/Pagination/WhereInWalker.php
@@ -28,7 +28,7 @@
28
use function reset;
29
30
/**
31
- * Replaces the whereClause of the AST with a WHERE id IN (:foo_1, :foo_2) equivalent.
+ * Appends a condition "id IN (:foo_1, :foo_2)" to the whereClause of the AST.
32
*/
33
class WhereInWalker extends TreeWalkerAdapter
34
{
@@ -43,9 +43,7 @@ class WhereInWalker extends TreeWalkerAdapter
43
public const PAGINATOR_ID_ALIAS = 'dpid';
44
45
46
- * Replaces the whereClause in the AST.
47
- *
48
- * Generates a clause equivalent to WHERE IN (:dpid_1, :dpid_2, ...)
+ * Appends a condition equivalent to "WHERE IN (:dpid_1, :dpid_2, ...)" to the whereClause of the AST.
49
*
50
* The parameter namespace (dpid) is defined by
51
* the PAGINATOR_ID_ALIAS
0 commit comments