You are here

MigrateMessageInterface.php in Drupal 10

Namespace

Drupal\migrate

File

core/modules/migrate/src/MigrateMessageInterface.php
View source
<?php

namespace Drupal\migrate;

interface MigrateMessageInterface {

  /**
   * Displays a migrate message.
   *
   * @param string $message
   *   The message to display.
   * @param string $type
   *   The type of message, for example: status or warning.
   */
  public function display($message, $type = 'status');

}

Interfaces