Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
9 | class ServiceNameResolver implements ServiceNameResolverInterface |
||
10 | { |
||
11 | /** @var string[] */ |
||
12 | private $methodMappingList = []; |
||
13 | |||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | public function resolve(string $methodName) : string |
||
22 | ; |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param string $methodName |
||
27 | * @param string $serviceId |
||
28 | */ |
||
29 | public function addMethodMapping(string $methodName, string $serviceId) |
||
34 |