| Total Complexity | 4 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class JsonRpcParamsValidator implements JsonRpcMethodParamsValidatorInterface |
||
| 15 | { |
||
| 16 | /** @var ValidatorInterface */ |
||
| 17 | private $validator; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param ValidatorInterface $validator |
||
| 21 | */ |
||
| 22 | 9 | public function __construct(ValidatorInterface $validator) |
|
| 25 | } |
||
| 26 | |||
| 27 | 9 | public function validate(JsonRpcRequest $jsonRpcRequest, JsonRpcMethodInterface $method) : array |
|
| 50 |