Skip to content

Commit 9687839

Browse files
beamopjaviereguiluz
authored andcommitted
Fixed minor errors
1 parent 70ff9a3 commit 9687839

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)