| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @param string $db The database type |
||
| 18 | * |
||
| 19 | * @AuraSqlQueryConfig |
||
| 20 | */ |
||
| 21 | #[AuraSqlQueryConfig] |
||
| 22 | public function __construct(private string $db) |
||
| 23 | { |
||
| 24 | } |
||
| 25 | 5 | ||
| 26 | /** |
||
| 27 | 5 | * {@inheritDoc} |
|
| 28 | 5 | */ |
|
| 29 | #[Override] |
||
| 30 | public function get(): SelectInterface |
||
| 31 | { |
||
| 32 | return new QueryFactory($this->db)->newSelect(); |
||
| 33 | 5 | } |
|
| 34 | } |
||
| 35 |