| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 42 | public function __construct($prefix, $depth, $fingerprint, $sequence, BufferInterface $chainCode, BufferInterface $keyData) |
|
| 23 | { |
||
| 24 | 42 | $this->prefix = $prefix; |
|
| 25 | 42 | $this->depth = $depth; |
|
| 26 | 42 | $this->fingerprint = $fingerprint; |
|
| 27 | 42 | $this->sequence = $sequence; |
|
| 28 | 42 | $this->chainCode = $chainCode; |
|
| 29 | 42 | $this->keyData = $keyData; |
|
| 30 | 42 | } |
|
| 31 | |||
| 80 |