Code Coverage  | 
     ||||||||||
Classes and Traits  | 
      Functions and Methods  | 
      Lines  | 
     ||||||||
| Total |         | 
      0 / 0  | 
              | 
      100.00%  | 
      0 / 0  | 
      CRAP |         | 
      100.00%  | 
      0 / 0  | 
     |
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\migrate\MigrateMessageInterface. | |
| */ | |
| 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'); | |
| } |