DumpConfigSourceInterface.php 525 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Config\App\Config\Source;
  7. use Magento\Framework\App\Config\ConfigSourceInterface;
  8. /**
  9. * Interface DumpConfigSourceInterface
  10. * @api
  11. * @since 100.1.2
  12. */
  13. interface DumpConfigSourceInterface extends ConfigSourceInterface
  14. {
  15. /**
  16. * Retrieves list of field paths were excluded from config dump
  17. *
  18. * @return array
  19. * @since 100.1.2
  20. */
  21. public function getExcludedFields();
  22. }