| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | 5 | public function __invoke(ContainerInterface $container): JWSBuilderFactory |
|
| 14 | { |
||
| 15 | /** @var AlgorithmManagerFactory $algorithmManagerFactory */ |
||
| 16 | 5 | $algorithmManagerFactory = $container->get(AlgorithmManagerFactory::class); |
|
| 17 | |||
| 18 | 5 | return new JWSBuilderFactory($algorithmManagerFactory); |
|
| 19 | } |
||
| 21 |