MessengerInterface.php 336 B

1234567891011121314151617181920
  1. <?php
  2. namespace Drupal\pathauto;
  3. /**
  4. * Provides an interface for Messengers.
  5. */
  6. interface MessengerInterface {
  7. /**
  8. * Adds a message.
  9. *
  10. * @param string $message
  11. * The message to add.
  12. * @param string $op
  13. * (optional) The operation being performed.
  14. */
  15. public function addMessage($message, $op = NULL);
  16. }