DataConverterInterface.php 433 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\DB\DataConverter;
  7. /**
  8. * Convert from one format to another
  9. */
  10. interface DataConverterInterface
  11. {
  12. /**
  13. * Convert from one format to another
  14. *
  15. * @param string $value
  16. * @return string
  17. *
  18. * @throws DataConversionException
  19. */
  20. public function convert($value);
  21. }