1 | <?php |
||
19 | final class MySQLBuilder implements Builder |
||
20 | { |
||
21 | use BuildMethod; |
||
22 | use DeleteMethod; |
||
23 | use InsertMethod; |
||
24 | use LimitMethod; |
||
25 | use OrderByMethod; |
||
26 | use OrWhereMethod; |
||
27 | use SelectMethod; |
||
28 | use TableMethod; |
||
29 | use UpdateMethod; |
||
30 | use WhereMethod; |
||
31 | use CloneWithMethod; |
||
32 | |||
33 | /** |
||
34 | * @var QueryFactory |
||
35 | */ |
||
36 | protected $factory; |
||
37 | |||
38 | /** |
||
39 | * @var QueryInterface |
||
40 | */ |
||
41 | protected $query; |
||
42 | |||
43 | /** |
||
44 | * @return QueryFactory |
||
45 | */ |
||
46 | 1 | protected function factory() |
|
54 | } |
||
55 |