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