Backup of db before drupal security update
[yaffs-website] / web / core / modules / block_content / src / BlockContentTypeInterface.php
1 <?php
2
3 namespace Drupal\block_content;
4
5 use Drupal\Core\Config\Entity\ConfigEntityInterface;
6 use Drupal\Core\Entity\RevisionableEntityBundleInterface;
7
8 /**
9  * Provides an interface defining a custom block type entity.
10  */
11 interface BlockContentTypeInterface extends ConfigEntityInterface, RevisionableEntityBundleInterface {
12
13   /**
14    * Returns the description of the block type.
15    *
16    * @return string
17    *   The description of the type of this block.
18    */
19   public function getDescription();
20
21 }