CommentInterface.php 446 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Provide access to data. Each Source can be responsible for each storage, where config data can be placed
  4. *
  5. * Copyright © Magento, Inc. All rights reserved.
  6. * See COPYING.txt for license details.
  7. */
  8. namespace Magento\Framework\App\Config;
  9. /**
  10. * Interface CommentInterface
  11. */
  12. interface CommentInterface
  13. {
  14. /**
  15. * Retrieve comment for configuration data.
  16. *
  17. * @return string
  18. */
  19. public function get();
  20. }