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

19 lines
350 B
PHP
Raw Normal View History

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