* @author Dennis Eichhorn * @copyright 2013 Dennis Eichhorn * @license OMS License 1.0 * @version 1.0.0 * @link http://orange-management.com */ namespace phpOMS\Message; use phpOMS\Uri\UriInterface; /** * Http request interface. * * @category Framework * @package phpOMS\Response * @author OMS Development Team * @author Dennis Eichhorn * @license OMS License 1.0 * @link http://orange-management.com * @since 1.0.0 */ interface RequestInterface extends MessageInterface { /** * Get request target. * * @return string * * @since 1.0.0 * @author Dennis Eichhorn */ public function getRequestTarget() : string; /** * Get request method. * * @return string * * @since 1.0.0 * @author Dennis Eichhorn */ public function getMethod() : string; /** * Get request uri. * * @return UriInterface * * @since 1.0.0 * @author Dennis Eichhorn */ public function getUri() : UriInterface; /** * Get request hash. * * @return string * * @since 1.0.0 * @author Dennis Eichhorn */ public function getHash() : array; }