| Current Path : /home/rtorresani/www/vendor/magento/module-ui/Component/Form/Element/DataType/ |
| Current File : //home/rtorresani/www/vendor/magento/module-ui/Component/Form/Element/DataType/Password.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Ui\Component\Form\Element\DataType;
/**
* Class Password
*/
class Password extends AbstractDataType
{
const NAME = 'password';
/**
* Get component name
*
* @return string
*/
public function getComponentName()
{
return static::NAME;
}
}