diff --git a/src/Symfony/Component/Form/Test/FormIntegrationTestCase.php b/src/Symfony/Component/Form/Test/FormIntegrationTestCase.php index f224c6dfb2..e3ee8ebe4b 100644 --- a/src/Symfony/Component/Form/Test/FormIntegrationTestCase.php +++ b/src/Symfony/Component/Form/Test/FormIntegrationTestCase.php @@ -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(); }