Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / entity / src / EntityPermissionProviderInterface.php
diff --git a/web/modules/contrib/entity/src/EntityPermissionProviderInterface.php b/web/modules/contrib/entity/src/EntityPermissionProviderInterface.php
deleted file mode 100644 (file)
index 50f3cca..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-namespace Drupal\entity;
-
-use Drupal\Core\Entity\EntityTypeInterface;
-
-/**
- * Allows entity types to provide permissions.
- */
-interface EntityPermissionProviderInterface {
-
-  /**
-   * Builds permissions for the given entity type.
-   *
-   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
-   *   The entity type.
-   *
-   * @return array
-   *   The permissions.
-   */
-  public function buildPermissions(EntityTypeInterface $entity_type);
-
-}