Gush\ConfigFactory::getFilesystem PHP Method

getFilesystem() private static method

private static getFilesystem ( ) : Symfony\Component\Filesystem\Filesystem
return Symfony\Component\Filesystem\Filesystem
    private static function getFilesystem()
    {
        static $fs;
        if (null === $fs) {
            $fs = new Filesystem();
        }
        return $fs;
    }