| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class SymfonySerializerAdapter implements MessageSerializerInterface |
||
| 21 | { |
||
| 22 | private SerializerInterface $serializer; |
||
| 23 | |||
| 24 | public function __construct(SerializerInterface $serializer) |
||
| 25 | 12 | { |
|
| 26 | $this->serializer = $serializer; |
||
| 27 | 12 | } |
|
| 28 | 12 | ||
| 29 | public function serialize($request): string |
||
| 32 | 5 | } |
|
| 33 | |||
| 34 | public function deserialize(string $response, array $context) |
||
| 39 |