コード例 #1
0
ファイル: Item.php プロジェクト: 4devs/CatalogBundle
 /**
  * Remove tag.
  *
  * @param TagInterface $tag
  */
 public function removeTag(TagInterface $tag)
 {
     $this->tags->removeElement($tag);
 }
コード例 #2
0
 /**
  * {@inheritdoc}
  */
 public function hasTag(TagInterface $tag)
 {
     return $this->tags->contains($tag);
 }