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