DrushLogMigrateMessage.php in Migrate Upgrade 8.2
Same filename and directory in other branches
Namespace
Drupal\migrate_upgradeFile
src/DrushLogMigrateMessage.phpView source
<?php
namespace Drupal\migrate_upgrade;
use Drupal\migrate\MigrateMessageInterface;
class DrushLogMigrateMessage implements MigrateMessageInterface {
/**
* Output a message from the migration.
*
* @param string $message
* The message to display.
* @param string $type
* The type of message to display.
*
* @see drush_log()
*/
public function display($message, $type = 'status') {
drush_log($message, $type);
}
}
Classes
Name | Description |
---|---|
DrushLogMigrateMessage |