| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 11 | final class PgsqlHelper extends ConnectionHelper |
||
| 12 | { |
||
| 13 | private string $dsn = 'pgsql:host=127.0.0.1;dbname=yiitest;port=5432'; |
||
| 14 | private string $username = 'root'; |
||
| 15 | private string $password = 'root'; |
||
| 16 | private string $charset = 'UTF8'; |
||
| 17 | |||
| 18 | public function createConnection(): ConnectionInterface |
||
| 26 |