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