workspaceId; } /** * @return static */ public function withWorkspaceId(int $workspaceId): self { if ($this->workspaceId === $workspaceId) { return $this; } $target = clone $this; $target->workspaceId = $workspaceId; return $target; } public function getLanguageId(): int { return $this->languageId; } /** * @return static */ public function withLanguageId(int $languageId): self { if ($this->languageId === $languageId) { return $this; } $target = clone $this; $target->languageId = $languageId; return $target; } }