/** * @param LocalizedFallbackValue $title * * @return $this */ public function removeTitle(LocalizedFallbackValue $title) { if ($this->titles->contains($title)) { $this->titles->removeElement($title); } return $this; }
/** * @param LocalizedFallbackValue $description * * @return $this */ public function removeDescription(LocalizedFallbackValue $description) { if ($this->descriptions->contains($description)) { $this->descriptions->removeElement($description); } return $this; }