summaryrefslogtreecommitdiff
path: root/ext/json/tests/bug72069.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/json/tests/bug72069.phpt')
-rw-r--r--ext/json/tests/bug72069.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/json/tests/bug72069.phpt b/ext/json/tests/bug72069.phpt
index 0ff8c98621..d7c7729013 100644
--- a/ext/json/tests/bug72069.phpt
+++ b/ext/json/tests/bug72069.phpt
@@ -10,10 +10,10 @@ var_dump($result);
class A implements \JsonSerializable
{
- function jsonSerialize()
- {
- return ['end' => json_decode(null, true)];
- }
+ function jsonSerialize()
+ {
+ return ['end' => json_decode(null, true)];
+ }
}
$a = new A();
$toJsonData = $a->jsonSerialize();