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