Completed
Push — develop ( fc40f2...fd0e92 )
by Neomerx
08:05 queued 06:22
created
src/Packages/FormValidation/FormValidationSettings.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
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,
Please login to merge, or discard this patch.
src/Packages/FormValidation/FormValidationContainerConfigurator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.