ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.SelectedUserSkill.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Skill\Personal;
22 
27 {
28  protected int $skill_node_id = 0;
29  protected string $title = "";
30 
31  public function __construct(
32  int $skill_node_id,
33  string $title
34  ) {
35  $this->skill_node_id = $skill_node_id;
36  $this->title = $title;
37  }
38 
39  public function getSkillNodeId(): int
40  {
41  return $this->skill_node_id;
42  }
43 
44  public function getTitle(): string
45  {
46  return $this->title;
47  }
48 }
__construct(int $skill_node_id, string $title)