Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class AlgorithmParameter extends JWTParameter |
||
16 | { |
||
17 | use StringParameterValue; |
||
18 | |||
19 | /** |
||
20 | * Constructor. |
||
21 | * |
||
22 | * @param string $algo Algorithm name |
||
23 | */ |
||
24 | 128 | public function __construct(string $algo) |
|
27 | 128 | } |
|
28 | |||
29 | /** |
||
30 | * Initialize from AlgorithmParameterValue. |
||
31 | */ |
||
32 | 46 | public static function fromAlgorithm(AlgorithmParameterValue $value): self |
|
37 |