Newscoop\Service\Implementation\ThemeServiceLocalFileSystem::escapePath PHP Method

escapePath() protected method

Converts the provided path from the OS specific form (if is the cae) to using just forward slashes.
protected escapePath ( string $path ) : string
$path string The path, *(not null not empty).
return string The escaped path.
    protected function escapePath($path)
    {
        return str_replace(DIR_SEP, '/', $path);
    }