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