FormIntegrationTestCase.php 910 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  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 Symfony\Component\Form\Tests;
  11. use Symfony\Component\Form\Test\FormIntegrationTestCase as BaseFormIntegrationTestCase;
  12. /**
  13. * @deprecated since version 2.3, to be removed in 3.0.
  14. * Use {@link \Symfony\Component\Form\Test\FormIntegrationTestCase} instead.
  15. */
  16. abstract class FormIntegrationTestCase extends BaseFormIntegrationTestCase
  17. {
  18. /**
  19. * {@inheritdoc}
  20. */
  21. protected function setUp()
  22. {
  23. @trigger_error('The '.__CLASS__.' class is deprecated since Symfony 2.3 and will be removed in 3.0. Use the Symfony\Component\Form\Test\FormIntegrationTestCase class instead.', E_USER_DEPRECATED);
  24. parent::setUp();
  25. }
  26. }