14 lines
252 B
PHP
14 lines
252 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace zin;
|
|
|
|
require_once dirname(__DIR__) . DS . 'input' . DS . 'v1.php';
|
|
|
|
class fileInput extends input
|
|
{
|
|
protected static array $defaultProps = array(
|
|
'name' => 'file',
|
|
'type' => 'file'
|
|
);
|
|
}
|