Skip to content

Commit b72c11f

Browse files
committed
minor #22445 [Form] rename getTypedExtensions() to getTypeExtensions() (xabbuh)
This PR was merged into the 3.3-dev branch. Discussion ---------- [Form] rename getTypedExtensions() to getTypeExtensions() | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #21780 (comment) | License | MIT | Doc PR | Commits ------- 099f626 rename getTypedExtensions() to getTypeExtensions()
2 parents e4f854d + 099f626 commit b72c11f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Component/Form/Test/FormIntegrationTestCase.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ protected function setUp()
2929
{
3030
$this->factory = Forms::createFormFactoryBuilder()
3131
->addExtensions($this->getExtensions())
32-
->addTypeExtensions($this->getTypedExtensions())
32+
->addTypeExtensions($this->getTypeExtensions())
3333
->addTypes($this->getTypes())
3434
->addTypeGuessers($this->getTypeGuessers())
3535
->getFormFactory();
@@ -40,7 +40,7 @@ protected function getExtensions()
4040
return array();
4141
}
4242

43-
protected function getTypedExtensions()
43+
protected function getTypeExtensions()
4444
{
4545
return array();
4646
}

0 commit comments

Comments
 (0)