ILIAS  trunk Revision v11.0_alpha-1769-g99a433fe2dc
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
InterestedUserFieldComponent.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
29  public function __construct(
30  private readonly string $component_name,
31  private readonly string $description
32  ) {
33  }
34 
35  public function getComponentName(): string
36  {
37  return $this->component_name;
38  }
39 
40  public function getDescription(): string
41  {
42  return $this->description;
43  }
44 }
__construct(private readonly string $component_name, private readonly string $description)