Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / migrate_drupal_ui / tests / modules / migration_provider_test / src / Plugin / migrate / source / NoSourceModule.php
1 <?php
2
3 namespace Drupal\migration_provider_test\Plugin\migrate\source;
4
5 use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;
6
7 /**
8  * A test source plugin without a source_module.
9  *
10  * @MigrateSource(
11  *   id = "no_source_module",
12  * )
13  */
14 class NoSourceModule extends DrupalSqlBase {
15
16   /**
17    * {@inheritdoc}
18    */
19   public function query() {}
20
21   /**
22    * {@inheritdoc}
23    */
24   public function fields() {}
25
26   /**
27    * {@inheritdoc}
28    */
29   public function getIds() {}
30
31 }