Phpml\Dataset\FilesDataset::scanRootPath PHP Метод

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

private scanRootPath ( string $rootPath )
$rootPath string
    private function scanRootPath(string $rootPath)
    {
        foreach (glob($rootPath . DIRECTORY_SEPARATOR . '*', GLOB_ONLYDIR) as $dir) {
            $this->scanDir($dir);
        }
    }