ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.SelectedUserSkill.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 namespace ILIAS\Skill\Personal;
23 
28 {
29  protected int $skill_node_id = 0;
30  protected string $title = "";
31 
32  public function __construct(
33  int $skill_node_id,
34  string $title
35  ) {
36  $this->skill_node_id = $skill_node_id;
37  $this->title = $title;
38  }
39 
40  public function getSkillNodeId(): int
41  {
42  return $this->skill_node_id;
43  }
44 
45  public function getTitle(): string
46  {
47  return $this->title;
48  }
49 }
__construct(int $skill_node_id, string $title)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...