Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public static function createHandler(array $config) |
||
22 | { |
||
23 | return new PdoHandler([ |
||
24 | 'dsn' => $config['PHIVE_PDO_MYSQL_DSN'], |
||
25 | 'username' => $config['PHIVE_PDO_MYSQL_USERNAME'], |
||
26 | 'password' => $config['PHIVE_PDO_MYSQL_PASSWORD'], |
||
27 | 'table_name' => $config['PHIVE_PDO_MYSQL_TABLE_NAME'], |
||
28 | ]); |
||
29 | } |
||
30 | } |
||
31 |