There’s no way to get all GET params from a request object? Do they have to be fetched one by one, and by name? I’d like something like $request->getAllParams().
Reading the code, the answer is obviously no. Maybe we’ll extend it locally, like:
public function getParams()
{
return (array) $_GET;
}