ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
SkillAssignments.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24{
28 public function __construct(
29 private readonly array $question,
30 private readonly array $skill_assignments
31 ) {
32 }
33
34 public function getQuestion(): array
35 {
36 return $this->question;
37 }
38
42 public function getSkillAssignments(): array
43 {
44 return $this->skill_assignments;
45 }
46}
__construct(private readonly array $question, private readonly array $skill_assignments)