| Total Complexity | 1 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 12 | final class OracleHelper extends ConnectionHelper |
||
| 13 | { |
||
| 14 | private string $dsn = 'oci:dbname=localhost/XE;'; |
||
| 15 | private string $username = 'system'; |
||
| 16 | private string $password = 'root'; |
||
| 17 | private string $charset = 'AL32UTF8'; |
||
| 18 | |||
| 19 | public function createConnection(): ConnectionInterface |
||
| 28 |