@@ -55,7 +55,7 @@ |
||
55 | 55 | |
56 | 56 | $validatorsFolder = $defaults[static::KEY_VALIDATORS_FOLDER] ?? null; |
57 | 57 | $validatorsFileMask = $defaults[static::KEY_VALIDATORS_FILE_MASK] ?? null; |
58 | - $validatorsPath = $validatorsFolder . DIRECTORY_SEPARATOR . $validatorsFileMask; |
|
58 | + $validatorsPath = $validatorsFolder.DIRECTORY_SEPARATOR.$validatorsFileMask; |
|
59 | 59 | |
60 | 60 | assert( |
61 | 61 | $validatorsFolder !== null && empty(glob($validatorsFolder)) === false, |
@@ -32,7 +32,7 @@ |
||
32 | 32 | */ |
33 | 33 | public static function configureContainer(ContainerInterface $container): void |
34 | 34 | { |
35 | - $container[FormValidatorFactoryInterface::class] = function (PsrContainerInterface $container) { |
|
35 | + $container[FormValidatorFactoryInterface::class] = function(PsrContainerInterface $container) { |
|
36 | 36 | $factory = new FormValidatorFactory($container); |
37 | 37 | |
38 | 38 | return $factory; |