Suply a getter for the node parent.

This commit is contained in:
Tim Schumacher 2014-06-15 16:39:47 +02:00
parent 040a3fbd8a
commit 56ce743994

View file

@ -83,6 +83,13 @@ abstract class DokuWikiNode
return $this->name; return $this->name;
} }
/**
* @return DokuWikiNameSpace
*/
public function getParent() {
return $this->parent;
}
/** /**
* @param $filename * @param $filename
* @param null $parent * @param null $parent