id; } public function getLongUrl(): string { return $this->longUrl; } /** * @param string|null $longUrl * @return Url */ public function setLongUrl(?string $longUrl): Url { $this->longUrl = $longUrl; return $this; } public function getCustomString(): ?string { return $this->customString; } public function setCustomString(?string $customString): Url { $this->customString = $customString; return $this; } }