CodeExplorer havingIsNull example
/**
* {@inheritdoc}
*/
public function havingCompile(Connection
$connection) { return $this->query->
havingCompile($connection);
} /**
* {@inheritdoc}
*/
public function havingIsNull($field) { $this->query->
havingIsNull($field);
return $this;
} /**
* {@inheritdoc}
*/
public function havingIsNotNull($field) { $this->query->
havingIsNotNull($field);
return $this;
}