[Form] added FormBuilderInterface in Tests namespace, so as to enable easy mocking

This commit is contained in:
Douglas Greenshields 2012-06-13 21:21:22 +01:00
parent c07e9163a6
commit 6b5b625a72

View File

@ -0,0 +1,16 @@
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Form\Tests;
interface FormBuilderInterface extends \Iterator, \Symfony\Component\Form\FormBuilderInterface
{
}