| Conditions | 2 |
| Paths | 2 |
| Total Lines | 22 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 12 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | 27 | public static function make($database) |
|
| 35 | { |
||
| 36 | 27 | $config = array('dbdriver' => $database->dbdriver); |
|
| 37 | |||
| 38 | 27 | $config['hostname'] = $database->hostname; |
|
| 39 | |||
| 40 | 27 | $config['username'] = $database->username; |
|
| 41 | |||
| 42 | 27 | $config['password'] = $database->password; |
|
| 43 | |||
| 44 | 27 | $config['database'] = $database->database; |
|
| 45 | |||
| 46 | 27 | if (empty($config['hostname'])) { |
|
| 47 | 27 | $dsn = (string) $database->dsn; |
|
| 48 | |||
| 49 | 27 | $config['hostname'] = $dsn; |
|
| 50 | 27 | } |
|
| 51 | |||
| 52 | 27 | $driver = new CodeIgniterDriver($config); |
|
| 53 | |||
| 54 | 27 | return new Describe($driver); |
|
| 55 | } |
||
| 56 | } |
||
| 57 |