Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
16 | trait Base64UIntValue |
||
17 | { |
||
18 | use Base64URLValue; |
||
19 | |||
20 | /** |
||
21 | * Initialize parameter from base10 number. |
||
22 | * |
||
23 | * @param int|string $number |
||
24 | * |
||
25 | * @return self |
||
26 | */ |
||
27 | 17 | public static function fromNumber($number): Parameter |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * Get value as a number. |
||
35 | */ |
||
36 | 32 | public function number(): BigInt |
|
41 |