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
|
|
|
/**
|
|
|
|
* ConditionalFactor ::= ["NOT"] ConditionalPrimary
|
|
|
|
*
|
|
|
|
* @author robo
|
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
class ConditionalFactor extends Node
|
2009-01-19 21:40:12 +03:00
|
|
|
{
|
|
|
|
private $_not = false;
|
|
|
|
private $_conditionalPrimary;
|
|
|
|
|
|
|
|
public function __construct($conditionalPrimary, $not = false)
|
|
|
|
{
|
|
|
|
$this->_conditionalPrimary = $conditionalPrimary;
|
|
|
|
$this->_not = $not;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isNot()
|
|
|
|
{
|
|
|
|
return $this->_not;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getConditionalPrimary()
|
|
|
|
{
|
|
|
|
return $this->_conditionalPrimary;
|
|
|
|
}
|
2009-03-23 20:39:33 +03:00
|
|
|
|
|
|
|
public function dispatch($sqlWalker)
|
|
|
|
{
|
|
|
|
return $sqlWalker->walkConditionalFactor($this);
|
|
|
|
}
|
2009-02-20 08:46:20 +03:00
|
|
|
}
|