Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
47 | public function createConnection() : PDO |
||
48 | { |
||
49 | $dsn = sprintf( |
||
50 | '%s:dbname=%s;host=%s;port=%s;charset=%s', |
||
51 | $this->driver, |
||
52 | $this->dbName, |
||
53 | $this->host, |
||
54 | $this->port, |
||
55 | $this->charset |
||
56 | ); |
||
57 | |||
58 | return new Pdo( |
||
59 | new \PDO($dsn, $this->username, $this->password) |
||
60 | ); |
||
61 | } |
||
62 | } |
||
63 |