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