1 | <?php |
||
21 | final class InteractionComponent |
||
22 | { |
||
23 | private $id; |
||
24 | private $description; |
||
25 | |||
26 | public function __construct(string $id, LanguageMap $description = null) |
||
31 | |||
32 | public function getId(): string |
||
36 | |||
37 | public function getDescription(): ?LanguageMap |
||
41 | |||
42 | public function equals(InteractionComponent $interactionComponent): bool |
||
58 | } |
||
59 |