v1.php 257 B

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