8000 [9.x] Cast Stringable to string when used with json_encode() by crynobone · Pull Request #35680 · laravel/framework · GitHub
[go: up one dir, main page]

Skip to content

[9.x] Cast Stringable to string when used with json_encode() #35680

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 20, 2020
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update src/Illuminate/Support/Stringable.php
Co-authored-by: Anton Komarev <1849174+antonkomarev@users.noreply.github.com>
  • Loading branch information
taylorotwell and antonkomarev authored Dec 20, 2020
commit 927337c188050c50799159fd2bcbc9198729d5f5
2 changes: 1 addition & 1 deletion src/Illuminate/Support/Stringable.php
Original file line number Diff line number Diff line change Expand Up @@ -737,7 +737,7 @@ public function __get($key) /** * Convert the object into something JSON serializable. * * @return array * @return string */ public function jsonSerialize() { Expand Down
0