Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | class ContainerMethodResolver implements MethodResolverInterface |
||
14 | { |
||
15 | /** @var ContainerInterface */ |
||
16 | private $container; |
||
17 | /** @var ServiceNameResolverInterface */ |
||
18 | private $serviceNameResolver; |
||
19 | |||
20 | 2 | public function __construct( |
|
26 | 2 | } |
|
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | 2 | public function resolve(string $methodName) : JsonRpcMethodInterface |
|
41 |