v1.php 239 B

123456789101112131415
  1. <?php
  2. namespace zin;
  3. require_once dirname(__DIR__) . DS . 'checkbox' . DS . 'v1.php';
  4. class radio extends checkbox
  5. {
  6. /**
  7. * @var mixed[]
  8. */
  9. protected static $defaultProps = array
  10. (
  11. 'type' => 'radio'
  12. );
  13. }