Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
28 | public function connect(array $params, $username = null, $password = null, array $driverOptions = []) |
||
29 | { |
||
30 | $driverOptions = array_diff_key($driverOptions, array_flip($this->extendedDriverOptions)); |
||
31 | |||
32 | return parent::connect($params, $username, $password, $driverOptions); |
||
33 | } |
||
34 | } |
||
35 |