File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed
lib/Doctrine/DBAL/Query/Expression Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -41,12 +41,6 @@ public function __construct(Connection $connection)
41
41
/**
42
42
* Creates a conjunction of the given expressions.
43
43
*
44
- * Example:
45
- *
46
- * [php]
47
- * // (u.type = ?) AND (u.role = ?)
48
- * $expr->andX('u.type = ?', 'u.role = ?'));
49
- *
50
44
* @param string|CompositeExpression ...$expressions Requires at least one defined when converting to string.
51
45
*/
52
46
public function and (...$ expressions ) : CompositeExpression
@@ -57,12 +51,6 @@ public function and(...$expressions) : CompositeExpression
57
51
/**
58
52
* Creates a disjunction of the given expressions.
59
53
*
60
- * Example:
61
- *
62
- * [php]
63
- * // (u.type = ?) OR (u.role = ?)
64
- * $qb->where($qb->expr()->orX('u.type = ?', 'u.role = ?'));
65
- *
66
54
* @param string|CompositeExpression ...$expressions Requires at least one defined when converting to string.
67
55
*/
68
56
public function or (...$ expressions ) : CompositeExpression
You can’t perform that action at this time.
0 commit comments