Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
43 | public function __construct( |
||
44 | ParsedCertificate $parsedCertificate, |
||
45 | array $rawCertificate, |
||
46 | $pemString, |
||
47 | $fingerprint |
||
48 | ) { |
||
49 | $this->parsedCertificate = $parsedCertificate; |
||
50 | $this->rawCertificate = $rawCertificate; |
||
51 | $this->pemString = $pemString; |
||
52 | $this->fingerprint = $fingerprint; |
||
53 | } |
||
54 | |||
92 |