fix Input::merge method.
This commit is contained in:
parent
94948cf675
commit
3241de0cc1
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue