ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ThreadsPage.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Forum\Thread;
22 
23 use ilForumTopic;
24 
25 readonly class ThreadsPage
26 {
30  public function __construct(private array $forum_topics)
31  {
32 
33  }
34 
38  public function getForumTopics(): array
39  {
40  return $this->forum_topics;
41  }
42 }
__construct(private array $forum_topics)
Definition: ThreadsPage.php:30