Jderusse\Warmup\ClassmapReader\DirectoryReader::normalize PHP Method

normalize() private method

private normalize ( string $path ) : string
$path string
return string
    private function normalize(string $path) : string
    {
        if (!$this->filesystem->isAbsolutePath($path)) {
            $path = $this->basePath . '/' . $path;
        }
        return $this->filesystem->normalizePath($path);
    }