21 lines
336 B
PHP
Raw Normal View History

2021-07-27 14:46:32 +02:00
<?php
namespace Drupal\pathauto;
/**
* Provides an interface for Messengers.
*/
interface MessengerInterface {
/**
* Adds a message.
*
* @param string $message
* The message to add.
* @param string $op
* (optional) The operation being performed.
*/
public function addMessage($message, $op = NULL);
}