| Total Complexity | 4 |
| Total Lines | 28 |
| 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 |
||
| 26 | { |
||
| 27 | $baseQueryBuilderProvider = new BaseQueryBuilderProvider(new Mock()); |
||
| 28 | |||
| 29 | return $baseQueryBuilderProvider->buildFilterCondition(); |
||
| 30 | } |
||
| 31 | |||
| 32 | public function buildWhereExists(): array |
||
| 37 | } |
||
| 38 | } |
||
| 39 |