| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class MsgpackSerializer implements SerializerInterface |
||
| 8 | { |
||
| 9 | use SerializerTrait; |
||
| 10 | |||
| 11 | public function serialize($data, $format): string |
||
| 12 | { |
||
| 13 | return msgpack_pack($data); |
||
| 14 | } |
||
| 15 | |||
| 16 | 1 | public function getSupportedFormats(): array |
|
| 19 | } |
||
| 20 | |||
| 21 | public function getDefaultFormat(): string |
||
| 24 | 2 | } |
|
| 25 | } |
||
| 26 |