Merge pull request #821 from daylerees/feature/clear-input

Added clear() method to the input class
This commit is contained in:
Taylor Otwell 2012-06-20 09:47:02 -07:00
commit fc96014c4f
2 changed files with 16 additions and 1 deletions

View File

@ -146,3 +146,9 @@ #### Merging new data into the current input:
#### Replacing the entire input array with new data: #### Replacing the entire input array with new data:
Input::merge(array('doctor' => 'Bones', 'captain' => 'Kirk')); Input::merge(array('doctor' => 'Bones', 'captain' => 'Kirk'));
## Clearing Input
To clear all input data for the current request, using the `clear()` method, for example:
Input::clear();

View File

@ -287,4 +287,13 @@ public static function replace(array $input)
Request::foundation()->request->replace($input); Request::foundation()->request->replace($input);
} }
/**
* Clear the input for the current request.
* @return void
*/
public static function clear()
{
Request::foundation()->request->replace(array());
}
} }