Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | 7 | public function __invoke(ContainerInterface $container): JWEDecrypterFactory |
|
15 | { |
||
16 | 7 | $algorithmManagerFactory = $container->get(AlgorithmManagerFactory::class); |
|
17 | 7 | $compressionMethodManagerFactory = $container->get(CompressionMethodManagerFactory::class); |
|
18 | |||
19 | 7 | return new JWEDecrypterFactory( |
|
20 | 7 | $algorithmManagerFactory, |
|
21 | $compressionMethodManagerFactory |
||
22 | ); |
||
25 |