Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php namespace Limoncello\Application\Packages\FormValidation; |
||
33 | public static function configureContainer(ContainerInterface $container): void |
||
34 | { |
||
35 | 2 | $container[FormValidatorFactoryInterface::class] = function (PsrContainerInterface $container) { |
|
36 | 2 | $factory = new FormValidatorFactory($container); |
|
37 | |||
38 | 2 | return $factory; |
|
39 | }; |
||
40 | } |
||
41 | } |
||
42 |