From 8d7d81b5be475fb0898da4955231d38c30dede1c Mon Sep 17 00:00:00 2001 From: Lukas Kahwe Smith Date: Sun, 22 Jul 2012 00:27:51 +0300 Subject: [PATCH] form master BC break --- Form/Extension/DescriptionFormTypeExtension.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Form/Extension/DescriptionFormTypeExtension.php b/Form/Extension/DescriptionFormTypeExtension.php index 437f39e..f088363 100644 --- a/Form/Extension/DescriptionFormTypeExtension.php +++ b/Form/Extension/DescriptionFormTypeExtension.php @@ -14,7 +14,7 @@ namespace Nelmio\ApiDocBundle\Form\Extension; use Symfony\Component\Form\AbstractTypeExtension; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\Form\FormInterface; -use Symfony\Component\Form\FormViewInterface; +use Symfony\Component\Form\FormView; use Symfony\Component\OptionsResolver\OptionsResolverInterface; class DescriptionFormTypeExtension extends AbstractTypeExtension @@ -30,7 +30,7 @@ class DescriptionFormTypeExtension extends AbstractTypeExtension /** * {@inheritdoc} */ - public function buildView(FormViewInterface $view, FormInterface $form, array $options) + public function buildView(FormView $view, FormInterface $form, array $options) { $view->setVar('description', $options['description']); }