Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
36 | public function __construct(?string $scheme, string $host, ?int $port = null, ?string $path = null, array $parameters = [], array $authentication = []) |
||
37 | { |
||
38 | $this->host = $host; |
||
39 | $this->port = $port; |
||
40 | $this->path = $path; |
||
41 | $this->setAuthentication($authentication); |
||
42 | parent::__construct($scheme, $parameters); |
||
43 | } |
||
77 |