Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
34 | 4 | public function __construct( |
|
35 | string $host, |
||
36 | int $port, |
||
37 | string $username = '', |
||
38 | string $password = '', |
||
39 | array $options = [] |
||
40 | ) { |
||
41 | 4 | $this->host = $host; |
|
42 | 4 | $this->port = $port; |
|
43 | 4 | $this->username = $username; |
|
44 | 4 | $this->password = $password; |
|
45 | 4 | $this->options = $this->cleanOptions($options); |
|
46 | 4 | } |
|
47 | |||
106 |