public function Relation::setUser in CRM Core 8
Same name and namespace in other branches
- 8.3 modules/crm_core_user_sync/src/Entity/Relation.php \Drupal\crm_core_user_sync\Entity\Relation::setUser()
Sets the relation user entity.
Parameters
\Drupal\user\UserInterface $account: The relation user entity.
Return value
$this
Overrides RelationInterface::setUser
File
- modules/
crm_core_user_sync/ src/ Entity/ Relation.php, line 75
Class
- Relation
- Defines the relation entity class.
Namespace
Drupal\crm_core_user_sync\EntityCode
public function setUser(UserInterface $account) {
$this
->set('user_id', $account
->id());
return $this;
}