Skip to content

Commit f15bc79

Browse files
Mathieu Piotmpiot
authored andcommitted
Fix coding standards
1 parent c934e49 commit f15bc79

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Symfony/Component/Form/Tests/AbstractBootstrap3LayoutTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public function testLabelWithCustomTextAsOptionAndCustomAttributesPassedDirectly
105105
public function testHelp()
106106
{
107107
$form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType', null, [
108-
'help' => 'Help text test!'
108+
'help' => 'Help text test!',
109109
]);
110110
$view = $form->createView();
111111
$html = $this->renderHelp($view);

src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ public function testLegendOnExpandedType()
154154
public function testHelp()
155155
{
156156
$form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType', null, [
157-
'help' => 'Help text test!'
157+
'help' => 'Help text test!',
158158
]);
159159
$view = $form->createView();
160160
$html = $this->renderHelp($view);

src/Symfony/Component/Form/Tests/AbstractLayoutTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ public function testLabelFormatOnButtonId()
413413
public function testHelp()
414414
{
415415
$form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType', null, [
416-
'help' => 'Help text test!'
416+
'help' => 'Help text test!',
417417
]);
418418
$view = $form->createView();
419419
$html = $this->renderHelp($view);

0 commit comments

Comments
 (0)