CommentInterface.php 440 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * System configuration comment model interface
  8. */
  9. namespace Magento\Config\Model\Config;
  10. /**
  11. * @api
  12. * @since 100.0.2
  13. */
  14. interface CommentInterface
  15. {
  16. /**
  17. * Retrieve element comment by element value
  18. * @param string $elementValue
  19. * @return string
  20. */
  21. public function getCommentText($elementValue);
  22. }