| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 22 | class Connection extends PDOConnectionConfig |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @param array<string,mixed> $options |
||
| 26 | */ |
||
| 27 | public function __construct(private string $dsn, ?string $username, ?string $password, array $options) |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function getName(): string |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | public function getDsn(): string |
||
| 48 |