You are here

MessengerInterface.php in Pathauto 8

Namespace

Drupal\pathauto

File

src/MessengerInterface.php
View source
<?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);

}

Interfaces

Namesort descending Description
MessengerInterface Provides an interface for Messengers.