continued refactoring.

This commit is contained in:
Taylor Otwell
2011-08-31 21:57:37 -05:00
parent 61eced25a1
commit 30514d9020
7 changed files with 13 additions and 65 deletions

View File

@@ -9,13 +9,6 @@ class Request {
*/
public $server;
/**
* The $_POST array for the request.
*
* @var array
*/
private $post;
/**
* The route handling the current request.
*
@@ -23,6 +16,13 @@ class Request {
*/
public $route;
/**
* The $_POST array for the request.
*
* @var array
*/
private $post;
/**
* The base URL of the application.
*