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);
 }