classId = $classId; $this->name = $name; $this->languageId = $languageId ?? self::DEFAULT_LANGUAGE; } public function getClassId(): string { return $this->classId; } public function getLanguageId(): string { return $this->languageId; } public function getName(): ?string { return $this->name; } }