ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.SkillResourceLevel.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\Skill\Resource;
22
27{
28 protected int $base_skill_id = 0;
29 protected int $tref_id = 0;
30 protected int $level_id = 0;
31
32 public function __construct(
34 int $tref_id,
35 int $level_id
36 ) {
37 $this->base_skill_id = $base_skill_id;
38 $this->tref_id = $tref_id;
39 $this->level_id = $level_id;
40 }
41
42 public function getBaseSkillId(): int
43 {
45 }
46
47 public function getTrefId(): int
48 {
49 return $this->tref_id;
50 }
51
52 public function getLevelId(): int
53 {
54 return $this->level_id;
55 }
56}
__construct(int $base_skill_id, int $tref_id, int $level_id)