You are here

public function Poll::setOwner in Poll 8

File

src/Entity/Poll.php, line 169

Class

Poll
Defines the poll entity class.

Namespace

Drupal\poll\Entity

Code

public function setOwner(UserInterface $account) {
  $this
    ->set('uid', $account
    ->id());
  return $this;
}