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