fix Input::merge method.

This commit is contained in:
Taylor Otwell 2012-04-24 08:27:29 -05:00
parent 94948cf675
commit 3241de0cc1
1 changed files with 11 additions and 0 deletions

View File

@ -235,6 +235,17 @@ public static function flush()
* @return void
*/
public static function merge(array $input)
{
Request::foundation()->request->add($input);
}
/**
* Replace the input for the current request.
*
* @param array $input
* @return void
*/
public static function replace(array $input)
{
Request::foundation()->request->replace($input);
}