Pantheon\Terminus\Config::fixDirectorySeparators PHP 메소드

fixDirectorySeparators() 공개 메소드

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