ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Topic.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\UI\Help;
22
26final 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:27
__construct(protected string $topic)
Definition: Topic.php:28