TheSeer\phpDox\Generator\Project::initCollections PHP Метод

initCollections() приватный Метод

private initCollections ( ) : void
Результат void
    private function initCollections()
    {
        $this->source = new fDOMDocument();
        $this->source->load($this->xmlDir . '/source.xml');
        $this->source->registerNamespace('phpdox', 'http://xml.phpdox.net/src');
        $this->index = new fDOMDocument();
        $this->index->load($this->xmlDir . '/index.xml');
        $this->index->registerNamespace('phpdox', 'http://xml.phpdox.net/src');
    }