Total Complexity | 11 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class RoutingResolver implements RoutingResolverInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var ApplicationConfiguration |
||
13 | */ |
||
14 | private $configuration; |
||
15 | |||
16 | public function __construct(ApplicationConfigurationStorage $storage) |
||
17 | { |
||
18 | $this->configuration = $storage->getConfiguration(); |
||
19 | } |
||
20 | |||
21 | public function resolve(string $adminName, string $actionName): string |
||
36 | } |
||
37 | |||
38 | public function resolveOptions(array $options): ?string |
||
59 |