Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / media_entity / src / Annotation / MediaType.php
diff --git a/web/modules/contrib/media_entity/src/Annotation/MediaType.php b/web/modules/contrib/media_entity/src/Annotation/MediaType.php
deleted file mode 100644 (file)
index 65a3d70..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-
-namespace Drupal\media_entity\Annotation;
-
-use Drupal\Component\Annotation\Plugin;
-
-/**
- * Defines an media entity type plugin annotation object.
- *
- * @see hook_media_entity_type_info_alter()
- *
- * @Annotation
- */
-class MediaType extends Plugin {
-
-  /**
-   * The plugin ID.
-   *
-   * @var string
-   */
-  public $id;
-
-  /**
-   * The human-readable name of the type.
-   *
-   * @ingroup plugin_translatable
-   *
-   * @var \Drupal\Core\Annotation\Translation
-   */
-  public $label;
-
-  /**
-   * A brief description of the plugin.
-   *
-   * This will be shown when adding or configuring this display.
-   *
-   * @ingroup plugin_translatable
-   *
-   * @var \Drupal\Core\Annotation\Translation (optional)
-   */
-  public $description = '';
-
-}