1 | <?php |
||
33 | class Expression extends StatementAbstract implements ExpressionInterface |
||
34 | { |
||
35 | use ClauseTrait, WhereTrait, OnTrait; |
||
36 | |||
37 | /** |
||
38 | * {@inheritDoc} |
||
39 | */ |
||
40 | public function __construct(BuilderInterface $builder) |
||
47 | |||
48 | /** |
||
49 | * {@inheritDoc} |
||
50 | */ |
||
51 | protected function buildSql(array $settings)/*# : string */ |
||
55 | |||
56 | /** |
||
57 | * {@inheritDoc} |
||
58 | */ |
||
59 | protected function getConfigs()/*# : array */ |
||
63 | } |
||
64 |