Total Complexity | 6 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
9 | class JsonRpcCallResponseNormalizer |
||
10 | { |
||
11 | /** @var JsonRpcResponseNormalizer */ |
||
12 | private $responseNormalizer; |
||
13 | |||
14 | /** |
||
15 | * @param JsonRpcResponseNormalizer $responseNormalizer |
||
16 | */ |
||
17 | public function __construct(JsonRpcResponseNormalizer $responseNormalizer) |
||
18 | { |
||
19 | $this->responseNormalizer = $responseNormalizer; |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @param JsonRpcCallResponse $jsonRpcCallResponse |
||
24 | * |
||
25 | * @return array|null |
||
26 | */ |
||
27 | public function normalize(JsonRpcCallResponse $jsonRpcCallResponse) |
||
51 | } |
||
52 | } |
||
53 |