longUrl = $longUrl; $this->tags = $tags; $this->meta = $meta ?? ShortUrlMeta::createEmpty(); } public function getLongUrl(): string { return $this->longUrl; } /** * @return string[] */ public function getTags(): array { return $this->tags; } public function getMeta(): ShortUrlMeta { return $this->meta; } }