TestToggleField.php 341 B

123456789101112131415161718
  1. <?php
  2. namespace Symfony\Tests\Component\Form\Fixtures;
  3. use Symfony\Component\Form\ToggleField;
  4. class TestToggleField extends ToggleField
  5. {
  6. /**
  7. * {@inheritDoc}
  8. */
  9. public function __construct($key, array $options = array())
  10. {
  11. $options['type'] = 'checkbox';
  12. parent::__construct($key, $options);
  13. }
  14. }