Pull merge.
[yaffs-website] / web / core / modules / migrate / tests / src / Kernel / MigrateDumpAlterInterface.php
1 <?php
2
3 namespace Drupal\Tests\migrate\Kernel;
4
5 use Drupal\KernelTests\KernelTestBase;
6
7 /**
8  * Allows tests to alter dumps after they have loaded.
9  *
10  * @see \Drupal\migrate_drupal\Tests\d6\MigrateFileTest
11  */
12 interface MigrateDumpAlterInterface {
13
14   /**
15    * Allows tests to alter dumps after they have loaded.
16    *
17    * @param \Drupal\KernelTests\KernelTestBase $test
18    *   The test that is being run.
19    */
20   public static function migrateDumpAlter(KernelTestBase $test);
21
22 }