Skip to content

Commit 861f4a4

Browse files
committed
minor #11015 Update registration_form.rst (beamop)
This PR was submitted for the 4.2 branch but it was merged into the 3.4 branch instead (closes #11015). Discussion ---------- Update registration_form.rst Fixed minor errors. Commits ------- 9687839 Fixed minor errors
2 parents 70ff9a3 + 9687839 commit 861f4a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doctrine/registration_form.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,13 +440,13 @@ To do this, add a ``termsAccepted`` field to your form, but set its
440440
public function buildForm(FormBuilderInterface $builder, array $options)
441441
{
442442
$builder
443-
->add('email', EmailType::class);
443+
->add('email', EmailType::class)
444444
// ...
445445
->add('termsAccepted', CheckboxType::class, [
446446
'mapped' => false,
447447
'constraints' => new IsTrue(),
448448
])
449-
);
449+
;
450450
}
451451
}
452452

0 commit comments

Comments
 (0)