예제 #1
0
파일: PageTag.php 프로젝트: hamichen/CMS
 /**
  * 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;
 }