daux.io/libs/ContentTypes/Markdown/TOC/RootEntry.php

19 lines
338 B
PHP
Raw Normal View History

2016-04-12 08:38:52 +02:00
<?php namespace Todaymade\Daux\ContentTypes\Markdown\TOC;
class RootEntry extends Entry
{
public function __construct()
{
$this->content = null;
$this->level = 0;
}
/**
* @return Entry
*/
public function getParent()
{
throw new \RuntimeException("No Parent Exception");
}
}