Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 75% |
Changes | 0 |
1 | <?php |
||
16 | final class PacketLength |
||
17 | { |
||
18 | public const SIZE_BYTES = 5; |
||
19 | |||
20 | private function __construct() |
||
21 | { |
||
22 | } |
||
23 | |||
24 | 232 | public static function pack(int $length) : string |
|
25 | { |
||
26 | 232 | return \pack('CN', 0xce, $length); |
|
27 | } |
||
28 | |||
29 | 198 | public static function unpack(string $data) : int |
|
36 | } |
||
37 | } |
||
38 |