referer; } /** * @param string $referer * @return $this */ public function setReferer($referer) { $this->referer = $referer; return $this; } /** * @return \DateTime */ public function getDate() { return $this->date; } /** * @param \DateTime $date * @return $this */ public function setDate($date) { $this->date = $date; return $this; } /** * @return string */ public function getCountry() { return $this->country; } /** * @param string $country * @return $this */ public function setCountry($country) { $this->country = $country; return $this; } /** * @return string */ public function getPlatform() { return $this->platform; } /** * @param string $platform * @return $this */ public function setPlatform($platform) { $this->platform = $platform; return $this; } /** * @return string */ public function getBrowser() { return $this->browser; } /** * @param string $browser * @return $this */ public function setBrowser($browser) { $this->browser = $browser; return $this; } /** * @return ShortUrl */ public function getShortUrl() { return $this->shortUrl; } /** * @param ShortUrl $shortUrl * @return $this */ public function setShortUrl($shortUrl) { $this->shortUrl = $shortUrl; return $this; } }