Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function getConnection(array $dbConfig) |
||
19 | { |
||
20 | $dbClass = sprintf('\Phalcon\Db\Adapter\Pdo\%s', $dbConfig['adapter']); |
||
21 | |||
22 | if (!class_exists($dbClass)) { |
||
23 | throw new Exception( |
||
24 | sprintf('PDO adapter "%s" not found.', $dbClass) |
||
25 | ); |
||
26 | } |
||
27 | |||
28 | unset($dbConfig['adapter']); |
||
29 | |||
30 | return new $dbClass($dbConfig); |
||
31 | } |
||
32 | } |
||
33 |