Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / media_entity / src / MediaTypeManager.php
diff --git a/web/modules/contrib/media_entity/src/MediaTypeManager.php b/web/modules/contrib/media_entity/src/MediaTypeManager.php
deleted file mode 100644 (file)
index 5ec95cc..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-
-namespace Drupal\media_entity;
-
-use Drupal\Core\Cache\CacheBackendInterface;
-use Drupal\Core\Extension\ModuleHandlerInterface;
-use Drupal\Core\Plugin\DefaultPluginManager;
-
-/**
- * Manages media entity type plugins.
- */
-class MediaTypeManager extends DefaultPluginManager {
-
-  /**
-   * Constructs a new MediaTypeManager.
-   *
-   * @param \Traversable $namespaces
-   *   An object that implements \Traversable which contains the root paths
-   *   keyed by the corresponding namespace to look for plugin implementations.
-   * @param \Drupal\Core\Cache\CacheBackendInterface $cache_backend
-   *   Cache backend instance to use.
-   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
-   *   The module handler.
-   */
-  public function __construct(\Traversable $namespaces, CacheBackendInterface $cache_backend, ModuleHandlerInterface $module_handler) {
-    parent::__construct('Plugin/MediaEntity/Type', $namespaces, $module_handler, 'Drupal\media_entity\MediaTypeInterface', 'Drupal\media_entity\Annotation\MediaType');
-
-    $this->alterInfo('media_entity_type_info');
-    $this->setCacheBackend($cache_backend, 'media_entity_type_plugins');
-  }
-
-}