| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 66.67% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class PingReq extends ProtocolBase implements WritableContentInterface |
||
| 12 | { |
||
| 13 | use WritableContent; |
||
| 14 | |||
| 15 | const CONTROL_PACKET_VALUE = 12; |
||
| 16 | |||
| 17 | 1 | public function createVariableHeader(): string |
|
| 18 | { |
||
| 19 | 1 | return ''; |
|
| 20 | } |
||
| 21 | |||
| 22 | 1 | public function createPayload(): string |
|
| 25 | } |
||
| 26 | |||
| 27 | public function shouldExpectAnswer(): bool |
||
| 30 | } |
||
| 31 | } |
||
| 32 |