TestField.php 419 B

123456789101112131415161718192021
  1. <?php
  2. namespace Symfony\Tests\Component\Form\Fixtures;
  3. use Symfony\Component\Form\Field;
  4. use Symfony\Component\Form\ValueTransformer\ValueTransformerInterface;
  5. class TestField extends Field
  6. {
  7. public function render(array $attributes = array())
  8. {
  9. }
  10. /**
  11. * Expose method for testing purposes
  12. */
  13. public function getNormalizedData()
  14. {
  15. return parent::getNormalizedData();
  16. }
  17. }