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

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

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

Usage Example

 public function setId($p_id)
 {
     $this->__load();
     return parent::setId($p_id);
 }