| Conditions | 7 |
| Paths | 7 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 56 |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | public static function resolveDbType($driverName) |
||
| 50 | { |
||
| 51 | switch ($driverName) { |
||
| 52 | case 'mysql': |
||
| 53 | return $driverName; |
||
| 54 | case 'pgsql': |
||
| 55 | return $driverName; |
||
| 56 | case 'dblib': |
||
| 57 | case 'mssql': |
||
| 58 | case 'sqlsrv': |
||
| 59 | return 'sqlsrv'; |
||
| 60 | case 'sqlite': |
||
| 61 | return $driverName; |
||
| 62 | default: |
||
| 63 | throw new RuntimeException('Your database is not supported!'); |
||
| 64 | } |
||
| 65 | } |
||
| 66 | |||
| 79 |