Skip to content

Commit

Permalink
update Stringable phpdoc (#50075)
Browse files Browse the repository at this point in the history
  • Loading branch information
milwad-dev committed Feb 13, 2024
1 parent d757670 commit adb9bec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Stringable.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down Expand Up @@ -1249,7 +1249,7 @@ public function toHtmlString()
/**
* Convert the string to Base64 encoding.
*
* @return void
* @return static
*/
public function toBase64()
{
Expand All @@ -1260,7 +1260,7 @@ public function toBase64()
* Decode the Base64 encoded string.
*
* @param bool $strict
* @return void
* @return static
*/
public function fromBase64($strict = false)
{
Expand Down

0 comments on commit adb9bec

Please sign in to comment.