| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 50 | 53 | public function __construct(string $prefix, int $depth, int $parentFingerprint, int $sequence, BufferInterface $chainCode, BufferInterface $keyData) |
|
| 51 | { |
||
| 52 | 53 | $this->prefix = $prefix; |
|
| 53 | 53 | $this->depth = $depth; |
|
| 54 | 53 | $this->parentFpr = $parentFingerprint; |
|
| 55 | 53 | $this->sequence = $sequence; |
|
| 56 | 53 | $this->chainCode = $chainCode; |
|
| 57 | 53 | $this->keyData = $keyData; |
|
| 58 | 53 | } |
|
| 59 | |||
| 108 |