5 use Doctrine\DBAL\Query\Expression\CompositeExpression;
34 $having = $this->
call($having,
$qb, $table_alias);
37 if ($having instanceof CompositeExpression || is_string($having)) {
38 $qb->andHaving($having);
Interface that allows resolving statements and/or extending query builder.
isCallable($callback)
Check if a clause expression is callable.
call($callback, QueryBuilder $qb, $table_alias=null)
Call the expression for the clause.
Extends QueryBuilder with HAVING clauses.
prepare(QueryBuilder $qb, $table_alias=null)
{Build an expression and/or apply it to an instance of query builder.Query builder Table aliasComposi...
__construct($expr)
Constructor.
Database abstraction query builder.