| 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/Email.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Ui\Component\Form\Element\DataType;
/**
* Class Email
*/
class Email extends AbstractDataType
{
const NAME = 'email';
/**
* Get component name
*
* @return string
*/
public function getComponentName()
{
return static::NAME;
}
}