コード例 #1
0
ファイル: SuluNode.php プロジェクト: sulu/sulu
 /**
  * {@inheritdoc}
  */
 public function getAncestor($depth)
 {
     return $this->node->getAncestor($depth);
 }
コード例 #2
0
 /**
  * @expectedException \PHPCR\ItemNotFoundException
  */
 public function testGetAncestorTooDeep()
 {
     $this->deepnode->getAncestor($this->deepnode->getDepth() + 1);
 }