| 1 | <?php declare(strict_types = 1); |
||
| 7 | final class PrivateKey |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $key; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param string $privateKey |
||
| 16 | */ |
||
| 17 | public function __construct(string $privateKey) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public function __toString() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | public function __debugInfo() |
||
| 42 | } |
||
| 43 |