Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
28 | 17 | public function __construct( |
|
29 | string $hosts, |
||
30 | string $username = '', |
||
31 | string $password = '', |
||
32 | array $options = [] |
||
33 | ) { |
||
34 | 17 | $this->hosts = $hosts; |
|
35 | 17 | $this->username = $username; |
|
36 | 17 | $this->password = $password; |
|
37 | 17 | $this->options = $options; |
|
38 | 17 | } |
|
39 | |||
95 |