* @copyright 2020 Copyright XEHub Corp. * @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL * @link https://xpressengine.io */ namespace App\UIObjects\Form; /** * Class FormPassword * * @category UIObjects * @package App\UIObjects\Form * @author XE Developers * @copyright 2020 Copyright XEHub Corp. * @license http://www.gnu.org/licenses/lgpl-3.0-standalone.html LGPL * @link https://xpressengine.io */ class FormPassword extends FormText { /** * The component id * * @var string */ protected static $id = 'uiobject/xpressengine@formPassword'; /** * Get the evaluated contents of the object. * * @return string */ public function render() { $this->arguments['type'] = 'password'; return parent::render(); } }