You are here

public function LPStatus::getUserId in Opigno Learning path 3.x

Same name and namespace in other branches
  1. 8 src/Entity/LPStatus.php \Drupal\opigno_learning_path\Entity\LPStatus::getUserId()

Gets the user ID.

Return value

int The user ID.

Overrides LPStatusInterface::getUserId

File

src/Entity/LPStatus.php, line 88

Class

LPStatus
Defines the User Learning Path attempt status entity.

Namespace

Drupal\opigno_learning_path\Entity

Code

public function getUserId() {
  return $this
    ->get('uid')->target_id;
}