| Total Complexity | 1 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 20 | trait ConfigureTrait |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Set a query specific configuration |
||
| 24 | * |
||
| 25 | * This configuration can be used to pass query specific |
||
| 26 | * configuration to the builder or the driver in use. |
||
| 27 | * |
||
| 28 | * @param array $config |
||
| 29 | * @return $this |
||
| 30 | */ |
||
| 31 | 3 | public function config(array $config): static |
|
| 37 |