Newscoop\Entity\Theme::setDescription PHP 메소드

setDescription() 공개 메소드

Set the desciption of the theme.
public setDescription ( string $description ) : Newscoop\Entity\Theme
$description string The description of the theme, must not be null or empty.
리턴 Newscoop\Entity\Theme This object for chaining purposes.
    public function setDescription($description)
    {
        $this->description = $description;
        return $this;
    }

Usage Example

예제 #1
0
 public function setDescription($description)
 {
     $this->__load();
     return parent::setDescription($description);
 }
All Usage Examples Of Newscoop\Entity\Theme::setDescription