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