Interim commit.
[yaffs-website] / web / modules / contrib / entity / src / Entity / RevisionableEntityBundleInterface.php
1 <?php
2
3 namespace Drupal\entity\Entity;
4
5 use Drupal\Core\Config\Entity\ConfigEntityInterface;
6
7 interface RevisionableEntityBundleInterface extends ConfigEntityInterface {
8
9   /**
10    * Returns whether a new revision should be created by default.
11    *
12    * @return bool
13    *   TRUE if a new revision should be created by default.
14    */
15   public function shouldCreateNewRevision();
16
17 }