*/ namespace Icinga\Module\Toplevelview\Tree; use Icinga\Exception\NotImplementedError; class TLVIcingaNode extends TLVTreeNode { protected static $canHaveChildren = false; /** * Interface to fetch data for the implementation * * Needs to be extended / replaced by class * * @param $root * * @throws NotImplementedError */ public static function fetch(/** @noinspection PhpUnusedParameterInspection */ TLVTree $root) { throw new NotImplementedError('fetch() has not been implemented for %s', get_class(new static)); } }