| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class CommandProvider |
||
| 10 | { |
||
| 11 | use TestTrait; |
||
| 12 | |||
| 13 | public function createIndex(): array |
||
| 14 | { |
||
| 15 | $baseCommandProvider = new BaseCommandProvider(); |
||
| 16 | |||
| 17 | return $baseCommandProvider->createIndex($this->getConnection()); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function rawSql(): array |
||
| 21 | { |
||
| 22 | $commandProvider = new BaseCommandProvider(); |
||
| 23 | |||
| 24 | return $commandProvider->rawSql(); |
||
| 25 | } |
||
| 26 | |||
| 27 | public function update(): array |
||
| 28 | { |
||
| 29 | $commandProvider = new BaseCommandProvider(); |
||
| 30 | |||
| 31 | return $commandProvider->update($this->getConnection()); |
||
| 32 | } |
||
| 33 | |||
| 34 | public function upsert(): array |
||
| 39 | } |
||
| 40 | } |
||
| 41 |