| Total Complexity | 4 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 36.36% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | final class PingReq extends ProtocolBase implements WritableContentInterface |
||
| 13 | { |
||
| 14 | use WritableContent; |
||
| 15 | |||
| 16 | const CONTROL_PACKET_VALUE = 12; |
||
| 17 | |||
| 18 | 1 | public function createVariableHeader(): string |
|
| 19 | { |
||
| 20 | 1 | return ''; |
|
| 21 | } |
||
| 22 | |||
| 23 | 1 | public function createPayload(): string |
|
| 24 | { |
||
| 25 | 1 | return ''; |
|
| 26 | } |
||
| 27 | |||
| 28 | public function expectAnswer(string $data): ReadableContentInterface |
||
| 34 | } |
||
| 35 | |||
| 36 | public function shouldExpectAnswer(): bool |
||
| 39 | } |
||
| 40 | } |
||
| 41 |