ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.SkillInternalFactoryService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Skill\Service;
22 
27 
34 {
35  public function tree(): Tree\SkillTreeFactory
36  {
37  return new Tree\SkillTreeFactory();
38  }
39 
40  public function profile(): Profile\SkillProfileFactory
41  {
42  return new Profile\SkillProfileFactory();
43  }
44 
45  public function personal(): Personal\PersonalSkillFactory
46  {
47  return new Personal\PersonalSkillFactory();
48  }
49 
50  public function resource(): Resource\SkillResourceFactory
51  {
52  return new Resource\SkillResourceFactory();
53  }
54 }