Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 66.67% |
Changes | 0 |
1 | <?php |
||
19 | final class PingReq extends ProtocolBase implements WritableContentInterface |
||
20 | { |
||
21 | use WritableContent; |
||
22 | |||
23 | const CONTROL_PACKET_VALUE = 12; |
||
24 | |||
25 | 1 | public function createVariableHeader(): string |
|
26 | { |
||
27 | 1 | return ''; |
|
28 | } |
||
29 | |||
30 | 1 | public function createPayload(): string |
|
33 | } |
||
34 | |||
35 | public function shouldExpectAnswer(): bool |
||
38 | } |
||
39 | } |
||
40 |