code_location = $code_location; $this->message = $message; $this->origin_location = $origin_location; } public function getMixedOriginMessage(): string { return $this->message . ($this->origin_location ? '. Consider improving the type at ' . $this->origin_location->getShortSummary() : ''); } public function getOriginalLocation(): ?CodeLocation { return $this->origin_location; } }