Is there a short way to get all router parameters (including the query parameters)? Now i use the following code: ``` php $routeVars = array_merge($this->getRequest()->query->all(), $this->getRequest()->attributes->get('_route_params')); ```