Constructor.
string $controller The controller name:
array $attributes An array of parameters to add to the Request attributes:
array $query An array of parameters to add to the Request query string:
public function __construct($controller, array $attributes = array(), array $query = array()) {
$this->controller = $controller;
$this->attributes = $attributes;
$this->query = $query;
}