id; } /** * Set name * * @param string $name * * @return CMSContent */ public function setName($name) { $this->name = $name; return $this; } /** * Get name * * @return string */ public function getName() { return $this->name; } /** * Set slug * * @param string $slug * * @return CMSContent */ public function setSlug($slug) { $this->slug = $slug; return $this; } /** * Get slug * * @return string */ public function getSlug() { return $this->slug; } /** * Set fullText * * @param string $fullText * * @return CMSContent */ public function setFullText($fullText) { $this->fullText = $fullText; return $this; } /** * Get fullText * * @return string */ public function getFullText() { return $this->fullText; } }