| Total Complexity | 8 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class SQLiteConfiguration implements ConfigurationInterface |
||
| 11 | { |
||
| 12 | private $dsn; |
||
| 13 | private $pdo_options; |
||
| 14 | private $pdo; |
||
| 15 | |||
| 16 | public function __construct(string $path, array $pdo_options = []) |
||
| 25 | } |
||
| 26 | |||
| 27 | public function isValid(): bool |
||
| 34 | } |
||
| 35 | } |
||
| 36 | |||
| 37 | public function buildConnection(): Connection |
||
| 50 |