TYPO3 CMS  TYPO3_6-2
Comparison.php
Go to the documentation of this file.
1 <?php
3 
17 
61 class Comparison implements ComparisonInterface {
62 
66  protected $operand1;
67 
71  protected $operator;
72 
76  protected $operand2;
77 
82 
91  $this->operand1 = $operand1;
92  $this->operator = $operator;
93  $this->operand2 = $operand2;
94  }
95 
101  public function getOperand1() {
102  return $this->operand1;
103  }
104 
110  public function getOperator() {
112 
113  if ($this->getOperand2() === NULL) {
118  }
119  }
120 
121  return $operator;
122  }
123 
129  public function getOperand2() {
130  return $this->operand2;
131  }
132 
138  $this->parameterIdentifier = $parameterIdentifier;
139  }
140 
144  public function getParameterIdentifier() {
146  }
147 
154  public function collectBoundVariableNames(&$boundVariables) {
155  }
156 }
__construct(PropertyValueInterface $operand1, $operator, $operand2)
Definition: Comparison.php:90