| Total Complexity | 1 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 19 | trait ServiceTrait |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var SerializerInterface |
||
| 23 | */ |
||
| 24 | protected $serializer; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param ResponseInterface $response |
||
| 28 | * @param string $className |
||
| 29 | * @param DeserializationContext $context |
||
| 30 | * |
||
| 31 | * @return mixed |
||
| 32 | */ |
||
| 33 | protected function deserializeResponse(ResponseInterface $response, $className, DeserializationContext $context = null) |
||
| 45 |