/** * Remove tag. * * @param TagInterface $tag */ public function removeTag(TagInterface $tag) { $this->tags->removeElement($tag); }
/** * {@inheritdoc} */ public function hasTag(TagInterface $tag) { return $this->tags->contains($tag); }