Пример #1
0
 /**
  * @param PageInterface $page
  * @return mixed
  */
 public function save(PageInterface $page)
 {
     if (!$page->getId()) {
         $page->setContentRoute(new ContentRoute());
     }
     $this->_em->persist($page);
 }