Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
13 | public function loadInternal(array $configs, ContainerBuilder $container) |
||
14 | 5 | { |
|
15 | 5 | $loader = new Loader\PhpFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
16 | 5 | $loader->load('services.php'); |
|
17 | 5 | foreach ($configs as $key => $value) { |
|
18 | $container->setParameter('karser_recaptcha3.'.$key, $value); |
||
19 | 5 | } |
|
30 |