| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class SignerConfig |
||
| 18 | { |
||
| 19 | 10 | public function __construct( |
|
| 20 | private readonly string $privateKey, |
||
| 21 | private readonly string $privateKeyPassword, |
||
| 22 | private readonly string $publicKey |
||
| 23 | ) { |
||
| 24 | 10 | } |
|
| 25 | |||
| 26 | 17 | public function getPrivateKey(): string |
|
| 29 | } |
||
| 30 | |||
| 31 | 17 | public function getPrivateKeyPassword(): string |
|
| 32 | { |
||
| 33 | 17 | return $this->privateKeyPassword; |
|
| 34 | } |
||
| 35 | |||
| 36 | 17 | public function getPublicKey(): string |
|
| 39 | } |
||
| 40 | } |
||
| 41 |