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