Files
farmOS-dev/web/core/modules/migrate/src/MigrateMessageInterface.php
2024-12-10 15:08:16 +01:00

18 lines
323 B
PHP

<?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');
}