Newscoop\Entity\AbstractEntity::setId PHP 메소드

setId() 공개 메소드

Set the id of the output, this will uniquielly identify this output.
public setId ( $id ) : Newscoop\Entity\Entity
리턴 Newscoop\Entity\Entity This object for chaining purposes.
    public function setId($id)
    {
        $this->id = $id;
        return $this;
    }
AbstractEntity