You are here

public function CityList::setOwner in Country, State and City Fields 8

Sets the entity owner's user entity.

Parameters

\Drupal\user\UserInterface $account: The owner user entity.

Return value

$this

Overrides EntityOwnerInterface::setOwner

File

src/Entity/CityList.php, line 136

Class

CityList
Defines the citylist entity.

Namespace

Drupal\country_state_city\Entity

Code

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