text = $text; $this->variables = $variables; } /** * @return string Aufgabentext */ public function getText(): string { return $this->text; } /** * @return array Assoziatives Array mit Variable → Richtiger Wert */ public function getVariables(): array { return $this->variables; } }