ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ThreadsPage.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\Forum\Thread;
22
23use ilForumTopic;
24
25readonly 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