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