<?php
namespace XF\Template\Compiler\Tag;
use XF\Template\Compiler;
use XF\Template\Compiler\Syntax\Tag;
class PasswordBoxRow extends AbstractFormElement
{
public function compile(Tag $tag, Compiler $compiler, array $context, $inlineExpected)
{
return $this->compileTextInput('PasswordBox', $tag->name == 'passwordboxrow', $tag, $compiler, $context);
}
}