1 | <?php |
||
5 | class CertificateChain |
||
6 | { |
||
7 | protected $certificates; |
||
8 | |||
9 | public static function fetchForCertificate(Certificate $certificate) |
||
13 | |||
14 | public function __construct(Certificate $certificate) |
||
18 | |||
19 | public function getContentOfCompleteChain(): string |
||
29 | |||
30 | protected function lastCertificate(): Certificate |
||
34 | } |
||
35 |