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