fixing bugs and refactoring.

This commit is contained in:
Taylor Otwell
2011-10-15 22:38:43 -05:00
parent b40e69c47a
commit a7e98e8e9a
7 changed files with 57 additions and 34 deletions

View File

@@ -7,7 +7,7 @@ class Input {
*
* @var array
*/
protected static $input;
public static $input;
/**
* The key used to store old input in the session.
@@ -16,17 +16,6 @@ class Input {
*/
const old_input = 'laravel_old_input';
/**
* Set the input for the current request.
*
* @param array $input
* @return void
*/
public static function set($input)
{
static::$input = $input;
}
/**
* Get all of the input data for the request.
*