Version 1
[yaffs-website] / web / modules / contrib / video_embed_field / modules / video_embed_media / src / UpgradeManagerInterface.php
diff --git a/web/modules/contrib/video_embed_field/modules/video_embed_media/src/UpgradeManagerInterface.php b/web/modules/contrib/video_embed_field/modules/video_embed_media/src/UpgradeManagerInterface.php
new file mode 100644 (file)
index 0000000..0ccf8d1
--- /dev/null
@@ -0,0 +1,15 @@
+<?php
+
+namespace Drupal\video_embed_media;
+
+/**
+ * Upgrades existing media_entity_embedded_video bundles.
+ */
+interface UpgradeManagerInterface {
+
+  /**
+   * Upgrade the existing media_entity_embedded_video bundles.
+   */
+  public function upgrade();
+
+}