| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1.064 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | 1 | public static function fromHex($string, EcAdapterInterface $ecAdapter = null) |
|
| 19 | { |
||
| 20 | /** @var DerSignatureSerializerInterface $serializer */ |
||
| 21 | 1 | $serializer = EcSerializer::getSerializer(DerSignatureSerializerInterface::class, true, $ecAdapter); |
|
| 22 | 1 | return $serializer->parse($string); |
|
| 23 | } |
||
| 24 | } |
||
| 25 |