Total Complexity | 1 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
14 | class PublicKeyUseParameter extends JWKParameter |
||
15 | { |
||
16 | use StringParameterValue; |
||
17 | |||
18 | public const USE_SIGNATURE = 'sig'; |
||
19 | public const USE_ENCRYPTION = 'enc'; |
||
20 | |||
21 | /** |
||
22 | * Constructor. |
||
23 | * |
||
24 | * @param string $use Intended use of the public key |
||
25 | */ |
||
26 | 20 | public function __construct(string $use) |
|
31 |