Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / entity / src / BundlePlugin / BundlePluginHandlerInterface.php
diff --git a/web/modules/contrib/entity/src/BundlePlugin/BundlePluginHandlerInterface.php b/web/modules/contrib/entity/src/BundlePlugin/BundlePluginHandlerInterface.php
deleted file mode 100644 (file)
index 5702fb5..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php
-
-namespace Drupal\entity\BundlePlugin;
-
-use Drupal\Core\Entity\EntityHandlerInterface;
-
-/**
- * Handles plugin-provided bundles.
- */
-interface BundlePluginHandlerInterface extends EntityHandlerInterface {
-
-  /**
-   * Gets the bundle info.
-   *
-   * @return array
-   *   An array of bundle information keyed by the bundle name.
-   *   The format expected by hook_entity_bundle_info().
-   */
-  public function getBundleInfo();
-
-  /**
-   * Gets the field storage definitions.
-   */
-  public function getFieldStorageDefinitions();
-
-  /**
-   * Gets the field definitions for a specific bundle.
-   *
-   * @param string $bundle
-   *   The bundle name.
-   *
-   * @return \Drupal\entity\BundleFieldDefinition[]
-   *   An array of bundle field definitions, keyed by field name.
-   */
-  public function getFieldDefinitions($bundle);
-
-}