| 1 | <?php |
||
| 21 | abstract class RelationalOperator extends BinaryConstraintOperator |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var ComparatorInterface |
||
| 25 | */ |
||
| 26 | private static $comparator = null; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param mixed $value |
||
| 30 | * |
||
| 31 | * @return int |
||
| 32 | */ |
||
| 33 | protected function comparison($value) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return \Cubiche\Core\Comparable\ComparatorInterface |
||
| 43 | */ |
||
| 44 | protected static function comparator() |
||
| 52 | } |
||
| 53 |