Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / pathauto / src / 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 }