public function LatestActivity::setUser in Opigno Learning path 8
Same name and namespace in other branches
- 3.x src/Entity/LatestActivity.php \Drupal\opigno_learning_path\Entity\LatestActivity::setUser()
Sets the user entity.
Parameters
\Drupal\Core\Session\AccountInterface $account: User account.
Return value
\Drupal\opigno_learning_path\LatestActivityInterface The called entity.
Overrides LatestActivityInterface::setUser
File
- src/
Entity/ LatestActivity.php, line 182
Class
- LatestActivity
- Defines the Latest Activity entity.
Namespace
Drupal\opigno_learning_path\EntityCode
public function setUser(AccountInterface $account) {
$this
->set('uid', $account
->id());
return $this;
}