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
diff --git a/web/core/modules/migrate_drupal_ui/tests/modules/migration_provider_test/src/Plugin/migrate/source/NoSourceModule.php b/web/core/modules/migrate_drupal_ui/tests/modules/migration_provider_test/src/Plugin/migrate/source/NoSourceModule.php
new file mode 100644 (file)
index 0000000..0fc3063
--- /dev/null
@@ -0,0 +1,31 @@
+<?php
+
+namespace Drupal\migration_provider_test\Plugin\migrate\source;
+
+use Drupal\migrate_drupal\Plugin\migrate\source\DrupalSqlBase;
+
+/**
+ * A test source plugin without a source_module.
+ *
+ * @MigrateSource(
+ *   id = "no_source_module",
+ * )
+ */
+class NoSourceModule extends DrupalSqlBase {
+
+  /**
+   * {@inheritdoc}
+   */
+  public function query() {}
+
+  /**
+   * {@inheritdoc}
+   */
+  public function fields() {}
+
+  /**
+   * {@inheritdoc}
+   */
+  public function getIds() {}
+
+}