Flake\Framework::prependSlash PHP Méthode

prependSlash() static public méthode

static public prependSlash ( $sString )
    static function prependSlash($sString)
    {
        if (substr($sString, 0, 1) !== "/") {
            $sString = "/" . $sString;
        }
        return $sString;
    }