id; } /** * Set language * * @param string $language * @return CodeChunk */ public function setLanguage($language) { $this->language = $language; return $this; } /** * Get language * * @return string */ public function getLanguage() { return $this->language; } /** * Set title * * @param string $title * @return CodeChunk */ public function setTitle($title) { $this->title = $title; return $this; } /** * Get title * * @return string */ public function getTitle() { return $this->title; } /** * Set slug * * @param string $slug * @return CodeChunk */ public function setSlug($slug) { $this->slug = $slug; return $this; } /** * Get slug * * @return string */ public function getSlug() { return $this->slug; } /** * Set description * * @param string $description * @return CodeChunk */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return string */ public function getDescription() { return $this->description; } /** * Set content * * @param string $content * @return CodeChunk */ public function setContent($content) { $this->content = $content; return $this; } /** * Get content * * @return string */ public function getContent() { return $this->content; } }