fix naming

This commit is contained in:
Yuri Kuznetsov
2021-06-25 11:45:43 +03:00
parent 639c7bb876
commit f77c23f781

View File

@@ -81,10 +81,10 @@ class ClassFinder
private function load(string $category, bool $subDirs = false): void
{
$path = $this->buildPaths($category);
$paths = $this->buildPaths($category);
$cacheFile = $this->buildCacheKey($category);
$this->dataHashMap[$category] = $this->classMap->getData($path, $cacheFile, null, $subDirs);
$this->dataHashMap[$category] = $this->classMap->getData($paths, $cacheFile, null, $subDirs);
}
private function buildPaths(string $category): array