Yosymfony\Spress\Core\DataSource\Filesystem\FilesystemDataSource::processIncludeFiles PHP 메소드

processIncludeFiles() 개인적인 메소드

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