| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2.864 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | 334 | public function connect( |
|
| 17 | array $params, |
||
| 18 | string $username = '', |
||
| 19 | string $password = '', |
||
| 20 | array $driverOptions = [] |
||
| 21 | ) : Connection { |
||
| 22 | try { |
||
| 23 | 334 | return new MysqliConnection($params, $username, $password, $driverOptions); |
|
| 24 | 30 | } catch (MysqliException $e) { |
|
| 25 | 30 | throw DBALException::driverException($this, $e); |
|
| 26 | } |
||
| 29 |