Newscoop\Entity\Comment\Commenter::setName PHP Метод

setName() публичный Метод

Set commenter full name
public setName ( string $name ) : Newscoop\Entity\Comment\Commenter
$name string
Результат Newscoop\Entity\Comment\Commenter
    public function setName($name)
    {
        $this->name = (string) $name;
        return $this;
    }

Usage Example

 public function setName($p_name)
 {
     $this->__load();
     return parent::setName($p_name);
 }