| 1 | <?php |
||
| 33 | class Expression extends StatementAbstract implements ExpressionInterface |
||
| 34 | { |
||
| 35 | use ClauseTrait, WhereTrait, OnTrait; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritDoc} |
||
| 39 | */ |
||
| 40 | protected $configs = ['WHERE' => '']; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritDoc} |
||
| 44 | */ |
||
| 45 | public function __construct(BuilderInterface $builder) |
||
| 52 | |||
| 53 | /** |
||
| 54 | * {@inheritDoc} |
||
| 55 | */ |
||
| 56 | protected function getType()/*# : string */ |
||
| 60 | } |
||
| 61 |