You are here

public function Criteria::getWhereExpression in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/doctrine/collections/lib/Doctrine/Common/Collections/Criteria.php \Doctrine\Common\Collections\Criteria::getWhereExpression()

Gets the expression attached to this Criteria.

Return value

Expression|null

File

vendor/doctrine/collections/lib/Doctrine/Common/Collections/Criteria.php, line 173

Class

Criteria
Criteria for filtering Selectable collections.

Namespace

Doctrine\Common\Collections

Code

public function getWhereExpression() {
  return $this->expression;
}