Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
68 | 4 | public function __construct(string $dbname, array $params) |
|
69 | { |
||
70 | 4 | $this->dbname = $dbname; |
|
71 | 4 | $this->host = $params['host']; |
|
72 | 4 | $this->port = $params['port']; |
|
73 | 4 | $this->username = $params['username']; |
|
74 | 4 | $this->password = $params['password']; |
|
75 | 4 | $this->options = $params['options']; |
|
76 | } |
||
119 |