| 1 | <?php |
||
| 19 | final class MySQLBuilder implements Builder |
||
| 20 | { |
||
| 21 | use BuildMethod; |
||
| 22 | use CloneWithMethod; |
||
| 23 | use DeleteMethod; |
||
| 24 | use InsertMethod; |
||
| 25 | use LimitMethod; |
||
| 26 | use OrderByMethod; |
||
| 27 | use OrWhereMethod; |
||
| 28 | use SelectMethod; |
||
| 29 | use TableMethod; |
||
| 30 | use UpdateMethod; |
||
| 31 | use WhereMethod; |
||
| 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 | protected function factory() |
||
| 54 | } |
||
| 55 |