Skip to content

Commit 42dcc1e

Browse files
committed
unify missing parentheses
1 parent 7e0a8af commit 42dcc1e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/FormFactoryBuilderTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ protected function setUp()
2727
$this->registry->setAccessible(true);
2828

2929
$this->guesser = $this->getMock('Symfony\Component\Form\FormTypeGuesserInterface');
30-
$this->type = new FooType;
30+
$this->type = new FooType();
3131
}
3232

3333
public function testAddType()
3434
{
35-
$factoryBuilder = new FormFactoryBuilder;
35+
$factoryBuilder = new FormFactoryBuilder();
3636
$factoryBuilder->addType($this->type);
3737

3838
$factory = $factoryBuilder->getFormFactory();
@@ -46,7 +46,7 @@ public function testAddType()
4646

4747
public function testAddTypeGuesser()
4848
{
49-
$factoryBuilder = new FormFactoryBuilder;
49+
$factoryBuilder = new FormFactoryBuilder();
5050
$factoryBuilder->addTypeGuesser($this->guesser);
5151

5252
$factory = $factoryBuilder->getFormFactory();

0 commit comments

Comments
 (0)