You are here

public function BlockContent::getRevisionUserId in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/block_content/src/Entity/BlockContent.php \Drupal\block_content\Entity\BlockContent::getRevisionUserId()

Implements \Drupal\Core\Entity\RevisionLogInterface::getRevisionUserId().

Overrides RevisionLogEntityTrait::getRevisionUserId

File

core/modules/block_content/src/Entity/BlockContent.php, line 263

Class

BlockContent
Defines the custom block entity class.

Namespace

Drupal\block_content\Entity

Code

public function getRevisionUserId() {
  return $this
    ->get('revision_user')->entity
    ->id();
}