Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class MethodResolver implements JsonRpcMethodResolverInterface |
||
12 | { |
||
13 | /** @var ContainerInterface */ |
||
14 | private $locator; |
||
15 | |||
16 | 2 | public function __construct(ContainerInterface $locator) |
|
17 | { |
||
18 | 2 | $this->locator = $locator; |
|
19 | 2 | } |
|
20 | |||
21 | /** |
||
22 | * {@inheritdoc} |
||
23 | */ |
||
24 | 2 | public function resolve(string $methodName) : ?JsonRpcMethodInterface |
|
29 | ; |
||
30 | } |
||
32 |