Yosymfony\Spress\Core\DataSource\Filesystem\FilesystemDataSource::processLayoutFiles PHP Method

processLayoutFiles() private method

private processLayoutFiles ( )
    private function processLayoutFiles()
    {
        $path = $this->composeSubPath('layouts');
        if (file_exists($path) === false) {
            return;
        }
        $finder = new Finder();
        $finder->in($path)->files();
        $this->processItems($finder, Item::TYPE_LAYOUT);
    }