
| Current Path : /var/www/html/strat/web/modules/contrib/pathauto/src/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/strat/web/modules/contrib/pathauto/src/MessengerInterface.php |
<?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);
}