Fix coding standards

This commit is contained in:
Mathieu Piot 2018-02-28 08:19:01 +01:00 committed by Mathieu Piot
parent c934e496d2
commit f15bc79df1
3 changed files with 3 additions and 3 deletions

View File

@ -105,7 +105,7 @@ abstract class AbstractBootstrap3LayoutTest extends AbstractLayoutTest
public function testHelp() public function testHelp()
{ {
$form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType', null, [ $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType', null, [
'help' => 'Help text test!' 'help' => 'Help text test!',
]); ]);
$view = $form->createView(); $view = $form->createView();
$html = $this->renderHelp($view); $html = $this->renderHelp($view);

View File

@ -154,7 +154,7 @@ abstract class AbstractBootstrap4LayoutTest extends AbstractBootstrap3LayoutTest
public function testHelp() public function testHelp()
{ {
$form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType', null, [ $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType', null, [
'help' => 'Help text test!' 'help' => 'Help text test!',
]); ]);
$view = $form->createView(); $view = $form->createView();
$html = $this->renderHelp($view); $html = $this->renderHelp($view);

View File

@ -413,7 +413,7 @@ abstract class AbstractLayoutTest extends FormIntegrationTestCase
public function testHelp() public function testHelp()
{ {
$form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType', null, [ $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType', null, [
'help' => 'Help text test!' 'help' => 'Help text test!',
]); ]);
$view = $form->createView(); $view = $form->createView();
$html = $this->renderHelp($view); $html = $this->renderHelp($view);