ILIAS  release_8 Revision v8.24
InterestedUserFieldComponent.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
21namespace ILIAS\Services\User;
22
28{
29 private string $componentName;
30 private string $description;
31
32 public function __construct(string $componentName, string $description)
33 {
34 $this->componentName = $componentName;
35 $this->description = $description;
36 }
37
38 public function getComponentName(): string
39 {
41 }
42
43 public function getDescription(): string
44 {
45 return $this->description;
46 }
47}
__construct(string $componentName, string $description)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...