diff --git a/src/Symfony/Component/Form/Extension/Csrf/CsrfExtension.php b/src/Symfony/Component/Form/Extension/Csrf/CsrfExtension.php index 37bb6d7e83..42505e2b76 100644 --- a/src/Symfony/Component/Form/Extension/Csrf/CsrfExtension.php +++ b/src/Symfony/Component/Form/Extension/Csrf/CsrfExtension.php @@ -50,7 +50,6 @@ class CsrfExtension extends AbstractExtension return array( new Type\ChoiceTypeCsrfExtension(), new Type\DateTypeCsrfExtension(), - new Type\FileTypeCsrfExtension(), new Type\FormTypeCsrfExtension(), new Type\RepeatedTypeCsrfExtension(), new Type\TimeTypeCsrfExtension(), diff --git a/src/Symfony/Component/Form/Extension/Csrf/Type/FileTypeCsrfExtension.php b/src/Symfony/Component/Form/Extension/Csrf/Type/FileTypeCsrfExtension.php deleted file mode 100644 index 98fc4609dc..0000000000 --- a/src/Symfony/Component/Form/Extension/Csrf/Type/FileTypeCsrfExtension.php +++ /dev/null @@ -1,27 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Symfony\Component\Form\Extension\Csrf\Type; - -use Symfony\Component\Form\AbstractTypeExtension; - -class FileTypeCsrfExtension extends AbstractTypeExtension -{ - public function getDefaultOptions(array $options) - { - return array('csrf_protection' => false); - } - - public function getExtendedType() - { - return 'file'; - } -}