| 1 | <?php |
||
| 14 | class ComparisonExpression extends Factor |
||
| 15 | { |
||
| 16 | /** @var AttributePath */ |
||
| 17 | public $attributePath; |
||
| 18 | |||
| 19 | /** @var string */ |
||
| 20 | public $operator; |
||
| 21 | |||
| 22 | /** @var mixed */ |
||
| 23 | public $compareValue; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param AttributePath $attributePath |
||
| 27 | * @param string $operator |
||
| 28 | * @param mixed $compareValue |
||
| 29 | */ |
||
| 30 | public function __construct(AttributePath $attributePath, $operator, $compareValue = null) |
||
| 36 | |||
| 37 | public function __toString() |
||
| 45 | |||
| 46 | public function dump() |
||
| 52 | } |
||
| 53 |