FormBuilder.php 600 B

12345678910111213141516171819202122232425
  1. <?php
  2. /*
  3. * This file is part of the Sonata package.
  4. *
  5. * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Sonata\AdminBundle\Tests\Form\Builder;
  11. use Symfony\Component\Form\Test\FormBuilderInterface;
  12. /**
  13. * Class FormBuilder
  14. *
  15. * Used to avoid an issue when to mocking FormBuilderInterface directly
  16. *
  17. * @see https://github.com/sebastianbergmann/phpunit-mock-objects/issues/103
  18. */
  19. abstract class FormBuilder implements FormBuilderInterface
  20. {
  21. }