Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | class DefaultServiceNameResolver implements ServiceNameResolverInterface |
||
10 | { |
||
11 | /** @var string */ |
||
12 | private $prefix = ''; |
||
13 | |||
14 | /** |
||
15 | * @param string $prefix |
||
16 | */ |
||
17 | 2 | public function __construct(string $prefix = '') |
|
20 | 2 | } |
|
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | 2 | public function resolve(string $methodName) : string |
|
30 |