rename getTypedExtensions() to getTypeExtensions()

This commit is contained in:
Christian Flothmann 2017-04-15 14:35:45 +02:00
parent ac5cfee6f1
commit 099f626e4d

View File

@ -29,7 +29,7 @@ abstract class FormIntegrationTestCase extends TestCase
{
$this->factory = Forms::createFormFactoryBuilder()
->addExtensions($this->getExtensions())
->addTypeExtensions($this->getTypedExtensions())
->addTypeExtensions($this->getTypeExtensions())
->addTypes($this->getTypes())
->addTypeGuessers($this->getTypeGuessers())
->getFormFactory();
@ -40,7 +40,7 @@ abstract class FormIntegrationTestCase extends TestCase
return array();
}
protected function getTypedExtensions()
protected function getTypeExtensions()
{
return array();
}