12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- /**
- * System Configuration Converter Mapper Interface
- */
- namespace Magento\Config\Model\Config\Structure;
- /**
- * @api
- * @since 100.0.2
- */
- interface MapperInterface
- {
- /**
- * Apply map
- *
- * @param array $data
- * @return array
- */
- public function map(array $data);
- }
|