Frontend\Core\Engine\FormFieldErrorNode::__construct PHP Method

__construct() public method

public __construct ( string $form, string $field, integer $lineno, string $tag )
$form string Name of the template var holding the form this field error belongs to.
$field string Name of the field of which we need to render the error.
$lineno integer Line number in the template source file.
$tag string the name of the template tag.
    public function __construct($form, $field, $lineno, $tag)
    {
        parent::__construct(array(), array(), $lineno, $tag);
        $this->form = $form;
        $this->field = $field;
    }
FormFieldErrorNode