Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
31 | 34 | public function __construct( |
|
32 | string $hosts, |
||
33 | string $username = '', |
||
34 | string $password = '', |
||
35 | string $authSource = null, |
||
36 | array $options = [] |
||
37 | ) { |
||
38 | 34 | $this->hosts = $hosts; |
|
39 | 34 | $this->username = $username; |
|
40 | 34 | $this->password = $password; |
|
41 | 34 | $this->options = $options; |
|
42 | 34 | $this->authSource = $authSource; |
|
43 | 34 | } |
|
44 | |||
108 |