* Add a set of failing tests for UrlMap -- TDD!
[hoplite.git] / http / request.php
1 <?php
2 // Hoplite
3 // Copyright (c) 2011 Blue Static
4 //
5 // This program is free software: you can redistribute it and/or modify it
6 // under the terms of the GNU General Public License as published by the Free
7 // Software Foundation, either version 3 of the License, or any later version.
8 //
9 // This program is distributed in the hope that it will be useful, but WITHOUT
10 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 // more details.
13 //
14 // You should have received a copy of the GNU General Public License along with
15 // this program. If not, see <http://www.gnu.org/licenses/>.
16
17 namespace hoplite\http;
18
19 require_once HOPLITE_ROOT . '/base/strict_object.php';
20
21 /*!
22 A Request represents a HTTP request and holds the data and contexte associated
23 with it.
24 */
25 class Request extends \hoplite\base\StrictObject
26 {
27 /*! @var string The request method (upper case). */
28 public $http_method = NULL;
29
30 /*! @var string The URL, relataive to the RootController. */
31 public $url = '';
32
33 /*! @var array HTTP request data. */
34 public $data = array();
35
36 /*!
37 Constructor. Takes an optional URL.
38 */
39 public function __construct($url = '')
40 {
41 $this->url = $url;
42 }
43 }