You are here

MigrateDumpAlterInterface.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/migrate/src/Tests/MigrateDumpAlterInterface.php

File

core/modules/migrate/src/Tests/MigrateDumpAlterInterface.php
View source
<?php

/**
 * @file
 * Contains \Drupal\migrate\Tests\MigrateDumpAlterInterface.
 */
namespace Drupal\migrate\Tests;

use Drupal\simpletest\TestBase;

/**
 * Allows tests to alter dumps after they've loaded.
 *
 * @s
 * @see \Drupal\migrate_drupal\Tests\d6\MigrateFileTest
 */
interface MigrateDumpAlterInterface {

  /**
   * Allows tests to alter dumps after they've loaded.
   *
   * @param \Drupal\simpletest\TestBase $test
   *   The test that is being run.
   */
  public static function migrateDumpAlter(TestBase $test);

}

Interfaces

Namesort descending Description
MigrateDumpAlterInterface Allows tests to alter dumps after they've loaded.