Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function __invoke( |
||
13 | ContainerInterface $container, |
||
14 | $requestedName, |
||
15 | array $options = null |
||
16 | ) { |
||
17 | $config = $container->get('configuration'); |
||
18 | $config = $config['idlerpg']; |
||
19 | |||
20 | $parser = $container->get(BotParserCache::class); |
||
21 | |||
22 | return new IndexController($config, $parser); |
||
23 | } |
||
25 |