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