TestField.php 195 B

123456789101112
  1. <?php
  2. namespace Symfony\Tests\Components\Form\Fixtures;
  3. use Symfony\Components\Form\Field;
  4. class TestField extends Field
  5. {
  6. public function render(array $attributes = array())
  7. {
  8. }
  9. }