ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
class.SkillResourceLevel.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 namespace ILIAS\Skill\Resource;
23 
28 {
29  protected int $base_skill_id = 0;
30  protected int $tref_id = 0;
31  protected int $level_id = 0;
32 
33  public function __construct(
34  int $base_skill_id,
35  int $tref_id,
36  int $level_id
37  ) {
38  $this->base_skill_id = $base_skill_id;
39  $this->tref_id = $tref_id;
40  $this->level_id = $level_id;
41  }
42 
43  public function getBaseSkillId(): int
44  {
45  return $this->base_skill_id;
46  }
47 
48  public function getTrefId(): int
49  {
50  return $this->tref_id;
51  }
52 
53  public function getLevelId(): int
54  {
55  return $this->level_id;
56  }
57 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(int $base_skill_id, int $tref_id, int $level_id)