You are here

public function LatestActivity::setUser in Opigno Learning path 3.x

Same name and namespace in other branches
  1. 8 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\Entity

Code

public function setUser(AccountInterface $account) {
  $this
    ->set('uid', $account
    ->id());
  return $this;
}