2009-01-19 21:40:12 +03:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* To change this template, choose Tools | Templates
|
|
|
|
* and open the template in the editor.
|
|
|
|
*/
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\ORM\Query\AST;
|
|
|
|
|
2009-01-19 21:40:12 +03:00
|
|
|
/**
|
|
|
|
* Description of WhereClause
|
|
|
|
*
|
|
|
|
* @author robo
|
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
class WhereClause extends Node
|
2009-01-19 21:40:12 +03:00
|
|
|
{
|
|
|
|
private $_conditionalExpression;
|
|
|
|
|
|
|
|
public function __construct($conditionalExpression)
|
|
|
|
{
|
|
|
|
$this->_conditionalExpression = $conditionalExpression;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getConditionalExpression()
|
|
|
|
{
|
|
|
|
return $this->_conditionalExpression;
|
|
|
|
}
|
2009-03-23 20:39:33 +03:00
|
|
|
|
|
|
|
public function dispatch($sqlWalker)
|
|
|
|
{
|
|
|
|
return $sqlWalker->walkWhereClause($this);
|
|
|
|
}
|
2009-02-20 08:46:20 +03:00
|
|
|
}
|