id; } /** * @param int $id * * @return NotificationRelUser */ public function setId($id) { $this->id = $id; return $this; } /** * @return Notification */ public function getNotification() { return $this->notification; } /** * @param Notification $notification * * @return NotificationRelUser */ public function setNotification(Notification $notification) { $this->notification = $notification; return $this; } /** * @return User */ public function getUser() { return $this->user; } /** * @param User $user * * @return NotificationRelUser */ public function setUser($user) { $this->user = $user; return $this; } }