PreProcessorInterface.php 415 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\App\Config\Spi;
  7. /**
  8. * Allows to use custom callbacks and functions before applying fallback
  9. */
  10. interface PreProcessorInterface
  11. {
  12. /**
  13. * Pre-processing of config
  14. *
  15. * @param array $config
  16. * @return array
  17. */
  18. public function process(array $config);
  19. }