123456789101112131415161718192021222324 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Config\App\Config\Source;
- use Magento\Framework\App\Config\ConfigSourceInterface;
- /**
- * Interface DumpConfigSourceInterface
- * @api
- * @since 100.1.2
- */
- interface DumpConfigSourceInterface extends ConfigSourceInterface
- {
- /**
- * Retrieves list of field paths were excluded from config dump
- *
- * @return array
- * @since 100.1.2
- */
- public function getExcludedFields();
- }
|