1 | <?php |
||
22 | final class SequencingInteractionDefinition extends InteractionDefinition |
||
23 | { |
||
24 | private $choices; |
||
25 | |||
26 | /** |
||
27 | * @param LanguageMap|null $name |
||
28 | * @param LanguageMap|null $description |
||
29 | * @param string|null $type |
||
30 | * @param string|null $moreInfo |
||
31 | * @param string[]|null $correctResponsesPattern |
||
32 | * @param InteractionComponent[]|null $choices |
||
33 | */ |
||
34 | public function __construct(LanguageMap $name = null, LanguageMap $description = null, $type = null, $moreInfo = null, array $correctResponsesPattern = null, array $choices = null) |
||
40 | |||
41 | /** |
||
42 | * @param InteractionComponent[]|null $choices |
||
43 | * |
||
44 | * @return static |
||
45 | */ |
||
46 | public function withChoices(array $choices = null) |
||
53 | |||
54 | public function getChoices() |
||
58 | |||
59 | public function equals(Definition $definition) |
||
91 | } |
||
92 |