Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Illuminate/Support/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