Newscoop\Entity\Notification::setContent PHP Метод

setContent() публичный метод

Set the content of the notification
public setContent ( string $p_content ) : Newscoop\Entity\Notification
$p_content string
Результат Newscoop\Entity\Notification
    public function setContent($p_content)
    {
        $this->content = $p_content;
        // return this for chaining mechanism
        return $this;
    }

Usage Example

 public function setContent($p_content)
 {
     $this->__load();
     return parent::setContent($p_content);
 }