InterpretationStrategyInterface.php 515 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Framework\View\Element\Message;
  7. use Magento\Framework\Message\MessageInterface;
  8. /**
  9. * Interface \Magento\Framework\View\Element\Message\InterpretationStrategyInterface
  10. *
  11. */
  12. interface InterpretationStrategyInterface
  13. {
  14. /**
  15. * Interpret message
  16. *
  17. * @param MessageInterface $message
  18. * @return string
  19. */
  20. public function interpret(MessageInterface $message);
  21. }