Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / entity_reference_revisions / src / EntityNeedsSaveTrait.php
diff --git a/web/modules/contrib/entity_reference_revisions/src/EntityNeedsSaveTrait.php b/web/modules/contrib/entity_reference_revisions/src/EntityNeedsSaveTrait.php
deleted file mode 100644 (file)
index 3304010..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-<?php
-
-namespace Drupal\entity_reference_revisions;
-use Drupal\Core\Entity\EntityStorageInterface;
-
-/**
- * Trait for EntityNeedsSaveInterface.
- */
-trait EntityNeedsSaveTrait {
-
-  /**
-   * Whether the entity needs to be saved or not.
-   *
-   * @var bool
-   */
-  protected $needsSave = FALSE;
-
-  /**
-   * {@inheritdoc}
-   */
-  public function needsSave() {
-    return $this->needsSave;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function setNeedsSave($needs_save) {
-    $this->needsSave = $needs_save;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  public function postSave(EntityStorageInterface $storage, $update = TRUE) {
-    parent::postSave($storage, $update);
-    $this->setNeedsSave(FALSE);
-  }
-}