You are here

public function LatestActivity::setUserId in Opigno Learning path 8

Same name and namespace in other branches
  1. 3.x src/Entity/LatestActivity.php \Drupal\opigno_learning_path\Entity\LatestActivity::setUserId()

Sets the user ID.

Parameters

int $uid: The user ID.

Return value

\Drupal\opigno_learning_path\LatestActivityInterface The called entity.

Overrides LatestActivityInterface::setUserId

File

src/Entity/LatestActivity.php, line 167

Class

LatestActivity
Defines the Latest Activity entity.

Namespace

Drupal\opigno_learning_path\Entity

Code

public function setUserId($uid) {
  $this
    ->set('uid', $uid);
  return $this;
}