Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
26 | 69 | public static function fromStream(Readable $stream): Value |
|
27 | { |
||
28 | 69 | $length = UnsignedOctet::fromStream($stream)->original(); |
|
29 | |||
30 | 69 | return new self($stream->read($length->value())); |
|
1 ignored issue
–
show
|
|||
31 | } |
||
43 |