| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | public function __construct(string $path, string $private, string $certificate, string $intermediate, int $expireTime) { |
||
| 14 | |||
| 15 | $this->path = $path; |
||
| 16 | $this->private = $private; |
||
| 17 | $this->certificate = $certificate; |
||
| 18 | $this->intermediate = $intermediate; |
||
| 19 | $this->expireTime = $expireTime; |
||
| 20 | } |
||
| 21 | } |