| 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/AbstractDataType.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Ui\Component\Form\Element\DataType;
use Magento\Ui\Component\AbstractComponent;
/**
* Class AbstractDataType
*
* @api
* @since 100.0.2
*/
abstract class AbstractDataType extends AbstractComponent implements DataTypeInterface
{
/**
* Validate value
*
* @return bool
*/
public function validate()
{
return true;
}
}