You are here

public function Media::setRevisionUser in Media entity 8

Sets the entity revision author.

Parameters

\Drupal\user\UserInterface $account: The user account of the revision author.

Return value

$this

Overrides RevisionLogInterface::setRevisionUser

File

src/Entity/Media.php, line 452

Class

Media
Defines the media entity class.

Namespace

Drupal\media_entity\Entity

Code

public function setRevisionUser(UserInterface $account) {
  $this->revision_uid->entity = $account;
  return $this;
}