InvalidField.php 261 B

1234567891011121314151617
  1. <?php
  2. namespace Symfony\Tests\Component\Form\Fixtures;
  3. use Symfony\Component\Form\Field;
  4. class InvalidField extends Field
  5. {
  6. public function isValid()
  7. {
  8. return false;
  9. }
  10. public function render(array $attributes = array())
  11. {
  12. }
  13. }