From 22f4864fcb54cd04fc0e110af193aa9a63905e22 Mon Sep 17 00:00:00 2001 From: Nino Treyssat-Vincent <18269685+treyssatvincent@users.noreply.github.com> Date: Thu, 18 Apr 2024 20:21:22 +0200 Subject: [PATCH] Clarify that \Illuminate\Http\Request::replace replace all input values (#51123) By adding "values" it clarify that this method replaces the current input values by a new set. --- src/Illuminate/Http/Request.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Http/Request.php b/src/Illuminate/Http/Request.php index f5a351c4d915..f80f74700dcd 100644 --- a/src/Illuminate/Http/Request.php +++ b/src/Illuminate/Http/Request.php @@ -368,7 +368,7 @@ public function mergeIfMissing(array $input) } /** - * Replace the input for the current request. + * Replace the input values for the current request. * * @param array $input * @return $this