Example #1
0
 /**
  * Remove Page entity from collection.
  *
  * @param \Base\Entity\Page $page
  * @return \Base\Entity\PageTag
  */
 public function removePage(Page $page)
 {
     $page->removePageTag($this);
     $this->pages->removeElement($page);
     return $this;
 }