ReinitableConfig.php 461 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\App;
  7. use Magento\Framework\App\Config\ReinitableConfigInterface;
  8. /**
  9. * @inheritdoc
  10. * @deprecated 101.0.0
  11. */
  12. class ReinitableConfig extends MutableScopeConfig implements ReinitableConfigInterface
  13. {
  14. /**
  15. * {@inheritdoc}
  16. */
  17. public function reinit()
  18. {
  19. $this->clean();
  20. return $this;
  21. }
  22. }