12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\DB\DataConverter;
- /**
- * Convert from one format to another
- */
- interface DataConverterInterface
- {
- /**
- * Convert from one format to another
- *
- * @param string $value
- * @return string
- *
- * @throws DataConversionException
- */
- public function convert($value);
- }
|