ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
Topic.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
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
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Purpose.php:21