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