ILIAS  trunk Revision v11.0_alpha-1769-g99a433fe2dc
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Topic.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\UI\Help;
22 
26 final class Topic
27 {
28  public function __construct(
29  protected string $topic
30  ) {
31  }
32 
33  public function get(): string
34  {
35  return $this->topic;
36  }
37 }
This is just a class that marks a string as a help topic.
Definition: Topic.php:26
__construct(protected string $topic)
Definition: Topic.php:28