8000 [JsonResponse] Silent only JSON errors by GromNaN · Pull Request #11418 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[JsonResponse] Silent only JSON errors #11418

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

Closed
wants to merge 4 commits into from
Closed
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
Fix JsonSerializable namespace
  • Loading branch information
GromNaN committed Sep 15, 2014
commit a4a8535751089420610f5ab0587cc55e793a0662
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public function testSetContentJsonSerializeError()
}

if (interface_exists('JsonSerializable')) {
class JsonSerializableObject implements JsonSerializable
class JsonSerializableObject implements \JsonSerializable
{
public function jsonSerialize()
{
Expand Down
0