| Total Complexity | 3 | 
| Total Lines | 23 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php declare(strict_types=1); | ||
| 7 | final class SslServerAddress | ||
| 8 | { | ||
| 9 | private string $ipAddress; | ||
| 10 | |||
| 11 | private int $port; | ||
| 12 | |||
| 13 | private Certificate $certificate; | ||
| 14 | |||
| 15 | 3 | public function __construct(string $ipAddress, int $port, Certificate $certificate) | |
| 20 | } | ||
| 21 | |||
| 22 | 1 | public function getUri(): string | |
| 25 | } | ||
| 26 | |||
| 27 | 1 | public function getCertificate(): Certificate | |
| 32 |