Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function __construct($certificate) |
||
28 | { |
||
29 | |||
30 | $this->id = $certificate->id; |
||
31 | $this->label = $certificate->label; |
||
32 | $this->certificate = $certificate->certificate; |
||
33 | $this->private_key = $certificate->private_key; |
||
34 | $this->ca = $certificate->ca; |
||
35 | $this->flags = $certificate->flags; |
||
36 | $this->expires_at = $certificate->expires_at; |
||
37 | $this->domains = $certificate->domains; |
||
38 | $this->environment = $certificate->environment; |
||
39 | $this->links = $certificate->_links; |
||
40 | } |
||
42 |