| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | final class PingReq extends ProtocolBase implements WritableContentInterface |
||
| 20 | { |
||
| 21 | use /** @noinspection TraitsPropertiesConflictsInspection */ |
||
| 22 | 1 | WritableContent; |
|
| 23 | |||
| 24 | private const CONTROL_PACKET_VALUE = 12; |
||
| 25 | |||
| 26 | 2 | public function createVariableHeader(): string |
|
| 27 | { |
||
| 28 | 2 | return ''; |
|
| 29 | } |
||
| 30 | |||
| 31 | 2 | public function createPayload(): string |
|
| 34 | } |
||
| 35 | |||
| 36 | 1 | public function shouldExpectAnswer(): bool |
|
| 39 | } |
||
| 40 | } |
||
| 41 |