public function CityList::setOwnerId in Country, State and City Fields 8
Sets the entity owner's user ID.
Parameters
int $uid: The owner user id.
Return value
$this
Overrides EntityOwnerInterface::setOwnerId
File
- src/
Entity/ CityList.php, line 128
Class
- CityList
- Defines the citylist entity.
Namespace
Drupal\country_state_city\EntityCode
public function setOwnerId($uid) {
$this
->set('user_id', $uid);
return $this;
}