public Comment::setOwner(UserInterface $account)
Sets the entity owner's user entity.
Parameters
\Drupal\user\UserInterface $account: The owner user entity.
Return value
$this
Overrides EntityOwnerInterface::setOwner
File
- core/modules/comment/src/Entity/Comment.php, line 551
Class
- Comment
- Defines the comment entity class.
Namespace
Drupal\comment\Entity
Code
public function setOwner(UserInterface $account) { $this->set('uid', $account->id()); return $this; }
Please login to continue.