Version 1
[yaffs-website] / web / modules / contrib / video_embed_field / modules / video_embed_media / src / UpgradeManagerInterface.php
1 <?php
2
3 namespace Drupal\video_embed_media;
4
5 /**
6  * Upgrades existing media_entity_embedded_video bundles.
7  */
8 interface UpgradeManagerInterface {
9
10   /**
11    * Upgrade the existing media_entity_embedded_video bundles.
12    */
13   public function upgrade();
14
15 }