Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Commit e738dd9

Browse files
committed
Fixed coding standards
1 parent f2a6772 commit e738dd9

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

src/DependencyInjection/EWZRecaptchaExtension.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ public function load(array $configs, ContainerBuilder $container)
5151
$container->register('ewz_recaptcha.'.$serviceDefinition['service_name'], FormBuilderInterface::class)
5252
->setFactory(array(
5353
new Reference('ewz_recaptcha.form_builder_factory'),
54-
'get', ))
54+
'get',
55+
))
5556
->setArguments([$serviceDefinition['options']]);
5657
}
5758
}

src/Factory/EWZRecaptchaV3FormBuilderFactory.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ public function get(array $options = array())
2020
$constraint = array(
2121
'constraints' => array(
2222
new IsTrueV3(),
23-
), );
24-
25-
return $this->builder->createBuilder(EWZRecaptchaV3Type::class, null, array_merge($options, $constraint)
23+
),
2624
);
25+
26+
return $this->builder->createBuilder(EWZRecaptchaV3Type::class, null, array_merge($options, $constraint));
2727
}
2828
}

0 commit comments

Comments
 (0)