| 1 | <?php |
||
| 15 | abstract class Entities extends Variable { |
||
| 16 | /** |
||
| 17 | * Identifier for the type. |
||
| 18 | * |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | abstract public function id(); |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @inheritdocs |
||
| 25 | */ |
||
| 26 | 44 | public function compile(ExpressionBuilder $builder, $table_name, $negate = false) { |
|
| 33 | |||
| 34 | 49 | protected function eq_op(ExpressionBuilder $builder, $l, $r, $negate) { |
|
| 42 | } |
||
| 43 | |||
| 44 |