ReinitableConfigInterface.php 486 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Configuration Reinitable Interface
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\App\Config;
  9. /**
  10. * @api
  11. * @since 100.0.2
  12. */
  13. interface ReinitableConfigInterface extends \Magento\Framework\App\Config\MutableScopeConfigInterface
  14. {
  15. /**
  16. * Reinitialize config object
  17. *
  18. * @return \Magento\Framework\App\Config\ReinitableConfigInterface
  19. */
  20. public function reinit();
  21. }