Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
15 | 2 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
16 | { |
||
17 | 2 | $config = $container->get('Config'); |
|
18 | 2 | $settingsArr = $config[Module::INVOICE_NINJA_CONFIG] ?? []; |
|
19 | 2 | $authArr = $settingsArr[Module::AUTHORIZATION] ?? []; |
|
20 | 2 | return new AuthOptions($authArr); |
|
21 | } |
||
22 | } |
||
23 |