comparison core/modules/block_content/src/BlockContentInterface.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
2 2
3 namespace Drupal\block_content; 3 namespace Drupal\block_content;
4 4
5 use Drupal\Core\Entity\ContentEntityInterface; 5 use Drupal\Core\Entity\ContentEntityInterface;
6 use Drupal\Core\Entity\EntityChangedInterface; 6 use Drupal\Core\Entity\EntityChangedInterface;
7 use Drupal\Core\Entity\EntityPublishedInterface;
7 use Drupal\Core\Entity\RevisionLogInterface; 8 use Drupal\Core\Entity\RevisionLogInterface;
8 9
9 /** 10 /**
10 * Provides an interface defining a custom block entity. 11 * Provides an interface defining a custom block entity.
11 */ 12 */
12 interface BlockContentInterface extends ContentEntityInterface, EntityChangedInterface, RevisionLogInterface { 13 interface BlockContentInterface extends ContentEntityInterface, EntityChangedInterface, RevisionLogInterface, EntityPublishedInterface {
13 14
14 /** 15 /**
15 * Returns the block revision log message. 16 * Returns the block revision log message.
16 * 17 *
17 * @return string 18 * @return string