ConverterInterface.php 395 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\Config;
  7. /**
  8. * Config DOM-to-array converter interface.
  9. *
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface ConverterInterface
  14. {
  15. /**
  16. * Convert config
  17. *
  18. * @param \DOMDocument $source
  19. * @return array
  20. */
  21. public function convert($source);
  22. }