You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
342 B
PHP

<?php
namespace Artmark\Forms\Fields;
use Artmark\Forms\AbstractTextField;
/**
* Description of TextField
*
* @author Andrey Pokidov <pokidov@e-traffic.ru>
*/
class TextField extends AbstractTextField
{
public function __construct($form, $name, $value = '')
{
parent::__construct($form, 'text', $name, $value);
}
}