From d5a35ef375cf0969e8d8e5cb0c948dee3471ee07 Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Fri, 16 Feb 2024 09:59:36 +0000 Subject: [PATCH] Actually fix fromBase64 return type (#50113) --- 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 3eb1032a27f2..9b576c6d7350 100644 --- a/src/Illuminate/Support/Str.php +++ b/src/Illuminate/Support/Str.php @@ -1551,7 +1551,7 @@ public static function toBase64($string): string * * @param string $string * @param bool $strict - * @return string + * @return string|false */ public static function fromBase64($string, $strict = false) {