user = $user; $this->linkTarget = $linkTarget; $this->notificationTimestamp = $notificationTimestamp; } /** * @return User */ public function getUser() { return $this->user; } /** * @return LinkTarget */ public function getLinkTarget() { return $this->linkTarget; } /** * Get the notification timestamp of this entry. * * @return bool|null|string */ public function getNotificationTimestamp() { return $this->notificationTimestamp; } }