id = $id; return $this; } /** * Gets id. * * @return int */ public function getId() { return $this->id; } /** * Sets uid. * * @param string $uid * * @return $this */ public function setUid($uid) { $this->uid = $uid; return $this; } /** * Gets uid. * * @return string */ public function getUid() { return $this->uid; } /** * Sets title. * * @param string $title * * @return $this */ public function setTitle($title) { $this->title = $title; return $this; } /** * Gets title. * * @return string */ public function getTitle() { return $this->title; } /** * Sets description. * * @param string $description * * @return $this */ public function setDescription($description) { $this->description = $description; return $this; } /** * Gets description. * * @return string */ public function getDescription() { return $this->description; } }