name = $name; $this->red = $red; $this->blue = $blue; $this->uploaderId = $uploaderId; $this->hash = $hash; } public function getName(): string { return $this->name; } public function getRed(): string { return $this->red; } public function getBlue(): string { return $this->blue; } public function getUploaderId(): int { return $this->uploaderId; } public function getHash(): string { return $this->hash; } }