You are here

public function EntityOwnerTrait::setOwner in Profile 8

File

src/EntityOwnerTrait.php, line 78

Class

EntityOwnerTrait
Provides a trait for entities that have an owner.

Namespace

Drupal\profile

Code

public function setOwner(UserInterface $account) {
  $key = $this
    ->getEntityType()
    ->getKey('owner');
  $this
    ->set($key, $account);
  return $this;
}