| Current Path : /home/rtorresani/www/vendor/magento/framework/DB/DataConverter/ |
| Current File : //home/rtorresani/www/vendor/magento/framework/DB/DataConverter/DataConverterInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Framework\DB\DataConverter;
/**
* Convert from one format to another
*
* @api
*/
interface DataConverterInterface
{
/**
* Convert from one format to another
*
* @param string $value
* @return string
*
* @throws DataConversionException
*/
public function convert($value);
}