| Total Complexity | 10 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class JsonMessageSerializer implements MessageSerializerInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @throws JsonException |
||
| 14 | */ |
||
| 15 | 2 | public function serialize(MessageInterface $message): string |
|
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @throws JsonException |
||
| 27 | * @throws InvalidArgumentException |
||
| 28 | */ |
||
| 29 | 11 | public function unserialize(string $value): MessageInterface |
|
| 58 |