Conditions | 5 |
Paths | 16 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 5 |
Changes | 3 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
12 | 6 | public function __construct(array $array = null) |
|
13 | { |
||
14 | 6 | $this->credentials = []; |
|
15 | 6 | $this->credentials['driver'] = $array['driver'] ?: 'pdo_mysql'; |
|
16 | 6 | $this->credentials['dbname'] = $array['dbname'] ?: 'delboy1978uk'; |
|
17 | 6 | $this->credentials['user'] = $array['user'] ?: 'dbuser'; |
|
18 | 6 | $this->credentials['password'] = $array['password'] ?: '[123456]'; |
|
19 | 6 | } |
|
20 | |||
100 | } |