| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 28 | protected function configure(): void |
||
| 29 | { |
||
| 30 | $this->bind()->annotatedWith(AuraSqlQueryConfig::class)->toInstance($this->db); |
||
| 31 | $this->bind(SelectInterface::class)->toProvider(AuraSqlQuerySelectProvider::class); |
||
| 32 | $this->bind(InsertInterface::class)->toProvider(AuraSqlQueryInsertProvider::class); |
||
| 33 | $this->bind(UpdateInterface::class)->toProvider(AuraSqlQueryUpdateProvider::class); |
||
| 34 | $this->bind(DeleteInterface::class)->toProvider(AuraSqlQueryDeleteProvider::class); |
||
| 35 | } |
||
| 37 |