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