Example #1
0
 /**
  * Add Page entity to collection.
  *
  * @param \Base\Entity\Page $page
  * @return \Base\Entity\PageTag
  */
 public function addPage(Page $page)
 {
     $page->addPageTag($this);
     $this->pages[] = $page;
     return $this;
 }