| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types = 1); |
||
| 13 | 1 | public function __construct(string $privateKeyFile, \Throwable $previous = null) |
|
| 14 | { |
||
| 15 | 1 | parent::__construct(sprintf( |
|
| 16 | 1 | 'Private key could not be loaded from file \'%s\'. Please make sure that the file contains valid private key in PEM format.', |
|
| 17 | $privateKeyFile |
||
| 18 | 1 | ), 0, $previous); |
|
| 19 | |||
| 20 | 1 | $this->privateKeyFile = $privateKeyFile; |
|
| 21 | 1 | } |
|
| 22 | |||
| 29 |