date = new \DateTime(); } /** * @return string */ public function getReferer() { return $this->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 ShortUrl */ public function getShortUrl() { return $this->shortUrl; } /** * @param ShortUrl $shortUrl * @return $this */ public function setShortUrl($shortUrl) { $this->shortUrl = $shortUrl; return $this; } /** * @return string */ public function getRemoteAddr() { return $this->remoteAddr; } /** * @param string $remoteAddr * @return $this */ public function setRemoteAddr($remoteAddr) { $this->remoteAddr = $remoteAddr; return $this; } /** * @return string */ public function getUserAgent() { return $this->userAgent; } /** * @param string $userAgent * @return $this */ public function setUserAgent($userAgent) { $this->userAgent = $userAgent; return $this; } }