. namespace hoplite\http; require_once HOPLITE_ROOT . '/base/strict_object.php'; /*! A Request represents a HTTP request and holds the data and contexte associated with it. */ class Request extends \hoplite\base\StrictObject { /*! @var string The request method (upper case). */ public $http_method = NULL; /*! @var string The URL, relataive to the RootController. */ public $url = ''; /*! @var array HTTP request data. */ public $data = array(); }