Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / entity_reference_revisions / src / EntityNeedsSaveInterface.php
diff --git a/web/modules/contrib/entity_reference_revisions/src/EntityNeedsSaveInterface.php b/web/modules/contrib/entity_reference_revisions/src/EntityNeedsSaveInterface.php
deleted file mode 100644 (file)
index 1513aa3..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-namespace Drupal\entity_reference_revisions;
-
-/**
- * Allows an entity to define whether it needs to be saved.
- */
-interface EntityNeedsSaveInterface {
-
-  /**
-   * Checks whether the entity needs to be saved.
-   *
-   * @return bool
-   *   TRUE if the entity needs to be saved.
-   */
-  public function needsSave();
-}