Added missing modules, including some as submodules.
[yaffs-website] / web / modules / contrib / migrate_plus / src / Entity / MigrationInterface.php
1 <?php
2
3 namespace Drupal\migrate_plus\Entity;
4
5 use Drupal\Core\Config\Entity\ConfigEntityInterface;
6
7 /**
8  * Interface for migrations.
9  */
10 interface MigrationInterface extends ConfigEntityInterface {
11
12 }