| Conditions | 1 |
| Paths | 1 |
| Total Lines | 4 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 60 | 33 | public static function fromBase256(string $octets): self |
|
| 61 | { |
||
| 62 | 33 | $num = gmp_import($octets, 1, GMP_MSW_FIRST | GMP_BIG_ENDIAN); |
|
| 63 | 33 | return new self($num); |
|
|
1 ignored issue
–
show
|
|||
| 64 | } |
||
| 96 |