Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / entity / src / Menu / EntityLocalActionProviderInterface.php
diff --git a/web/modules/contrib/entity/src/Menu/EntityLocalActionProviderInterface.php b/web/modules/contrib/entity/src/Menu/EntityLocalActionProviderInterface.php
deleted file mode 100644 (file)
index bba16c3..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-namespace Drupal\entity\Menu;
-
-use Drupal\Core\Entity\EntityTypeInterface;
-
-/**
- * Provides an interface for entity local action providers.
- */
-interface EntityLocalActionProviderInterface {
-
-  /**
-   * Builds local actions for the given entity type.
-   *
-   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
-   *   The entity type.
-   *
-   * @return array[]
-   *   An array of local action definitions.
-   */
-  public function buildLocalActions(EntityTypeInterface $entity_type);
-
-}