Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
15 | 3 | public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null): RecordCompleter |
|
16 | { |
||
17 | /** @var array $config */ |
||
18 | 3 | $config = $container->get('config'); |
|
19 | 3 | $baseUrl = 'https://' . $config['hostname']; |
|
20 | |||
21 | 3 | return new RecordCompleter($baseUrl); |
|
22 | } |
||
24 |