public function LPResult::setUser in Opigno Learning path 8
Same name and namespace in other branches
- 3.x src/Entity/LPResult.php \Drupal\opigno_learning_path\Entity\LPResult::setUser()
Sets User.
File
- src/
Entity/ LPResult.php, line 124
Class
- LPResult
- Defines the Learning Path Content entity.
Namespace
Drupal\opigno_learning_path\EntityCode
public function setUser(User $user) {
$this
->set('user_id', $user
->id());
return $this;
}