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