Mercurial > hg > isophonics-drupal-site
view modules/contrib/migrate_upgrade/src/DrushLogMigrateMessage.php @ 1:1a348b17ec81
Logo and header background
author | Chris Cannam |
---|---|
date | Thu, 30 Nov 2017 14:56:35 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php /** * @file * Contains \Drupal\migrate_upgrade\DrushLogMigrateMessage. */ 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); } }