Gc\Form\AbstractForm::__construct PHP Method

__construct() public method

Constructor
public __construct ( null | string | integer $name = null )
$name null | string | integer Optional name for the element
    public function __construct($name = null)
    {
        parent::__construct($name);
        $this->setAttribute('method', 'post');
        $this->setUseInputFilterDefaults(false);
        $this->init();
    }