Upgraded imagemagick and manually altered pdf to image module to handle changes....
[yaffs-website] / web / modules / contrib / entity_reference_revisions / src / EntityNeedsSaveInterface.php
1 <?php
2
3 namespace Drupal\entity_reference_revisions;
4
5 /**
6  * Allows an entity to define whether it needs to be saved.
7  */
8 interface EntityNeedsSaveInterface {
9
10   /**
11    * Checks whether the entity needs to be saved.
12    *
13    * @return bool
14    *   TRUE if the entity needs to be saved.
15    */
16   public function needsSave();
17 }