| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 0 | 
| CRAP Score | 2 | 
| Changes | 0 | ||
| 1 | <?php | ||
| 19 | public static function fromEcAdapter(EcAdapterInterface $ecAdapter) | ||
| 20 |     { | ||
| 21 | $derSigSer = EcSerializer::getSerializer(DerSignatureSerializerInterface::class); | ||
| 22 | $txSigSer = new TransactionSignatureSerializer($derSigSer); | ||
| 23 | $pkSer = EcSerializer::getSerializer(PublicKeySerializerInterface::class); | ||
| 24 | return new CheckerCreator($ecAdapter, $txSigSer, $pkSer); | ||
| 25 | } | ||
| 26 | /** | ||
| 37 |