CacheInterface.php 322 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Configuration cache interface
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\Config;
  9. /**
  10. * Config cache interface.
  11. *
  12. * @api
  13. * @since 100.0.2
  14. */
  15. interface CacheInterface extends \Magento\Framework\Cache\FrontendInterface
  16. {
  17. }