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