Mercurial > hg > isophonics-drupal-site
comparison core/modules/migrate/tests/src/Kernel/MigrateDumpAlterInterface.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
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 } |