PrivateBin\Model\Comment::setPaste PHP Метод

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

Set paste.
public setPaste ( Paste $paste ) : void
$paste Paste
Результат void
    public function setPaste(Paste $paste)
    {
        $this->_paste = $paste;
        $this->_data->meta->pasteid = $paste->getId();
    }

Usage Example

Пример #1
0
 /**
  * Get a comment, optionally a specific instance.
  *
  * @access public
  * @param string $parentId
  * @param string $commentId
  * @throws Exception
  * @return Comment
  */
 public function getComment($parentId, $commentId = null)
 {
     if (!$this->exists()) {
         throw new Exception('Invalid data.', 62);
     }
     $comment = new Comment($this->_conf, $this->_store);
     $comment->setPaste($this);
     $comment->setParentId($parentId);
     if ($commentId !== null) {
         $comment->setId($commentId);
     }
     return $comment;
 }