Pantheon\Terminus\Config::fixDirectorySeparators PHP Method

fixDirectorySeparators() public method

Ensures that directory paths work in any system
public fixDirectorySeparators ( string $path ) : string
$path string A path to set the directory separators for
return string
    public function fixDirectorySeparators($path)
    {
        return str_replace(['/', '\\'], DIRECTORY_SEPARATOR, $path);
    }