From c8bc72fae1d0a2e6ccb5a3ec5abe5eadcab7e056 Mon Sep 17 00:00:00 2001 From: kphoen Date: Sat, 26 May 2012 18:43:11 +0200 Subject: [PATCH] Updated tests I forgot to update the tests in the PR #21. --- Tests/Fixtures/Form/TestType.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tests/Fixtures/Form/TestType.php b/Tests/Fixtures/Form/TestType.php index 004e4e9..03fd4fe 100644 --- a/Tests/Fixtures/Form/TestType.php +++ b/Tests/Fixtures/Form/TestType.php @@ -12,14 +12,14 @@ namespace Nelmio\ApiDocBundle\Tests\Fixtures\Form; use Symfony\Component\Form\AbstractType; -use Symfony\Component\Form\FormBuilder; +use Symfony\Component\Form\FormBuilderInterface; class TestType extends AbstractType { /** * {@inheritdoc} */ - public function buildForm(FormBuilder $builder, array $options) + public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add('a', null, array('description' => 'A nice description')); $builder->add('b');