Contao\Input::stripSlashes PHP Method

stripSlashes() public static method

Strip slashes
Deprecation: Deprecated since Contao 3.5, to be removed in Contao 5. Since get_magic_quotes_gpc() always returns false in PHP 5.4+, the method was never actually executed.
public static stripSlashes ( mixed $varValue ) : mixed
$varValue mixed A string or array
return mixed The string or array without slashes
    public static function stripSlashes($varValue)
    {
        return $varValue;
    }