From b2c106a57c408fff697e695ee779f121856b94e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20QUIAIOS?= <13620819+squiaios@users.noreply.github.com> Date: Fri, 4 Aug 2023 16:45:34 +0200 Subject: [PATCH] docs: update phpdoc in Str helper for remove function $subject can be a string or an array of string --- src/Illuminate/Support/Str.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Support/Str.php b/src/Illuminate/Support/Str.php index c2d1f33ad181..0a827ebe62de 100644 --- a/src/Illuminate/Support/Str.php +++ b/src/Illuminate/Support/Str.php @@ -1034,7 +1034,7 @@ public static function replaceLast($search, $replace, $subject) * Remove any occurrence of the given string in the subject. * * @param string|iterable $search - * @param string $subject + * @param string|iterable $subject * @param bool $caseSensitive * @return string */