From adb9bec3838a1cbd51b928b822533bbc3e12d898 Mon Sep 17 00:00:00 2001 From: Milwad <98118400+milwad-dev@users.noreply.github.com> Date: Wed, 14 Feb 2024 01:22:37 +0330 Subject: [PATCH] update Stringable phpdoc (#50075) --- Stringable.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Stringable.php b/Stringable.php index 6352bb62..fd344622 100644 --- a/Stringable.php +++ b/Stringable.php @@ -204,7 +204,7 @@ public function containsAll($needles, $ignoreCase = false) * Convert the case of a string. * * @param int $mode - * @param string $encoding + * @param string|null $encoding * @return static */ public function convertCase(int $mode = MB_CASE_FOLD, ?string $encoding = 'UTF-8') @@ -1249,7 +1249,7 @@ public function toHtmlString() /** * Convert the string to Base64 encoding. * - * @return void + * @return static */ public function toBase64() { @@ -1260,7 +1260,7 @@ public function toBase64() * Decode the Base64 encoded string. * * @param bool $strict - * @return void + * @return static */ public function fromBase64($strict = false) {