| Total Complexity | 7 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class QueryBuilderProvider |
||
| 10 | { |
||
| 11 | public function batchInsert(): array |
||
| 12 | { |
||
| 13 | $baseQueryBuilderProvider = new BaseQueryBuilderProvider(new Mock()); |
||
| 14 | |||
| 15 | return $baseQueryBuilderProvider->batchInsert(); |
||
| 16 | } |
||
| 17 | |||
| 18 | public function buildConditions(): array |
||
| 23 | } |
||
| 24 | |||
| 25 | public function buildFilterCondition(): array |
||
| 30 | } |
||
| 31 | |||
| 32 | public function buildFrom(): array |
||
| 33 | { |
||
| 34 | $baseQueryBuilderProvider = new BaseQueryBuilderProvider(new Mock()); |
||
| 35 | |||
| 36 | return $baseQueryBuilderProvider->buildFrom(); |
||
| 37 | } |
||
| 38 | |||
| 39 | public function buildWhereExists(): array |
||
| 44 | } |
||
| 45 | |||
| 46 | public function createDropIndex(): array |
||
| 51 | } |
||
| 52 | |||
| 53 | public function delete(): array |
||
| 60 |