Todaymade\Daux\ContentTypes\Markdown\LinkRendererTest::getTree PHP Метод

getTree() защищенный Метод

protected getTree ( Config $config )
$config Todaymade\Daux\Config
    protected function getTree(Config $config)
    {
        $structure = ['Content' => ['Page.md' => 'some text content'], 'Widgets' => ['Page.md' => 'another page', 'Button.md' => 'another page']];
        $root = vfsStream::setup('root', null, $structure);
        $config->setDocumentationDirectory($root->url());
        $config['valid_content_extensions'] = ['md'];
        $config['mode'] = Daux::STATIC_MODE;
        $config['index_key'] = 'index.html';
        $tree = new Root($config);
        Builder::build($tree, []);
        return $tree;
    }