__construct() __construct(string $name = null) Constructor Instantiate a request handler object Parameters string $name
setName() setName(string $name) : \Pop\Debug\Handler\AbstractHandler Set name Parameters string $name Returns \Pop\Debug\Handler\AbstractHandler
getIp() getIp(boolean $proxy = true) : string Get client's IP Parameters boolean $proxy Returns string
getQuery() getQuery(string $key = null) : string|array Get a value from $_GET, or the whole array Parameters string $key Returns string|array
getPost() getPost(string $key = null) : string|array Get a value from $_POST, or the whole array Parameters string $key Returns string|array
getPut() getPut(string $key = null) : string|array Get a value from PUT query data, or the whole array Parameters string $key Returns string|array
getPatch() getPatch(string $key = null) : string|array Get a value from PATCH query data, or the whole array Parameters string $key Returns string|array
getDelete() getDelete(string $key = null) : string|array Get a value from DELETE query data, or the whole array Parameters string $key Returns string|array
getFiles() getFiles(string $key = null) : string|array Get a value from $_FILES, or the whole array Parameters string $key Returns string|array
getServer() getServer(string $key = null) : string|array Get a value from $_SERVER, or the whole array Parameters string $key Returns string|array
getEnv() getEnv(string $key = null) : string|array Get a value from $_ENV, or the whole array Parameters string $key Returns string|array
getCookie() getCookie(string $key = null) : string|array Get a value from $_COOKIE, or the whole array Parameters string $key Returns string|array
getSession() getSession(string $key = null) : string|array Get a value from $_SESSION, or the whole array Parameters string $key Returns string|array
getParsedData() getParsedData(string $key = null) : string|array Get a value from parsed data, or the whole array Parameters string $key Returns string|array
getHeader() getHeader(string $key) : string Get a value from the request headers Parameters string $key Returns string