| 1 | <?php |
||
| 15 | abstract class Entities extends Variable { |
||
| 16 | /** |
||
| 17 | * Get an id for the type of entity. |
||
| 18 | * |
||
| 19 | * This must return a string without whitespaces. |
||
| 20 | * |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | abstract public function id(); |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @inheritdocs |
||
| 27 | */ |
||
| 28 | 122 | public function meaning() { |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @inheritdocs |
||
| 34 | */ |
||
| 35 | 44 | public function compile(ExpressionBuilder $builder, $table_name, $negate = false) { |
|
| 42 | |||
| 43 | 49 | protected function eq_op(ExpressionBuilder $builder, $l, $r, $negate) { |
|
| 51 | } |
||
| 52 | |||
| 53 |