diff --git a/src/Symfony/Component/Form/Test/FormIntegrationTestCase.php b/src/Symfony/Component/Form/Test/FormIntegrationTestCase.php index f224c6dfb2373..e3ee8ebe4b01f 100644 --- a/src/Symfony/Component/Form/Test/FormIntegrationTestCase.php +++ b/src/Symfony/Component/Form/Test/FormIntegrationTestCase.php @@ -29,7 +29,7 @@ protected function setUp() { $this->factory = Forms::createFormFactoryBuilder() ->addExtensions($this->getExtensions()) - ->addTypeExtensions($this->getTypedExtensions()) + ->addTypeExtensions($this->getTypeExtensions()) ->addTypes($this->getTypes()) ->addTypeGuessers($this->getTypeGuessers()) ->getFormFactory(); @@ -40,7 +40,7 @@ protected function getExtensions() return array(); } - protected function getTypedExtensions() + protected function getTypeExtensions() { return array(); }