Exemplo n.º 1
0
 /**
  * Add tag
  *
  * @param \Taichi\BlogBundle\Entity\Tag $tag
  *
  * @return Post
  */
 public function addTag(Tag $tag)
 {
     $tag->addPost($this);
     $this->tags[] = $tag;
     return $this;
 }