Contao\Environment::request PHP Method

request() protected static method

Return the relativ path to the script and include the request (e.g. index.php?id=2)
protected static request ( ) : string
return string The relative path to the script including the request string
    protected static function request()
    {
        return preg_replace('/^' . preg_quote(static::get('path'), '/') . '\\/?/', '', static::get('requestUri'));
    }