RequestContext setBaseUrl(string $baseUrl) Sets the base URL. Parameters string $baseUrl The base URL Return Value RequestContext The current instance, implementing a fluent interface
bool hasParameter(string $name) Checks if a parameter value is set for the given parameter. Parameters string $name A parameter name Return Value bool True if the parameter value is set, false otherwise
RequestContext setHttpPort(int $httpPort) Sets the HTTP port. Parameters int $httpPort The HTTP port Return Value RequestContext The current instance, implementing a fluent interface
mixed getParameter(string $name) Gets a parameter value. Parameters string $name A parameter name Return Value mixed The parameter value or null if nonexistent
string getMethod() Gets the HTTP method. The method is always an uppercased string. Return Value string The HTTP method
string getQueryString() Gets the query string. Return Value string The query string without the "?"
string getScheme() Gets the HTTP scheme. Return Value string The HTTP scheme
string getPathInfo() Gets the path info. Return Value string The path info
array getParameters() Returns the parameters. Return Value array The parameters
string getHost() Gets the HTTP host. The host is always lowercased because it must be treated case-insensitive. Return Value string The HTTP host
Page 174 of 787