MapperInterface.php 404 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * System Configuration Converter Mapper Interface
  8. */
  9. namespace Magento\Config\Model\Config\Structure;
  10. /**
  11. * @api
  12. * @since 100.0.2
  13. */
  14. interface MapperInterface
  15. {
  16. /**
  17. * Apply map
  18. *
  19. * @param array $data
  20. * @return array
  21. */
  22. public function map(array $data);
  23. }