From 015dcd3fd3936c81fb255b23461054bc43d7b1e7 Mon Sep 17 00:00:00 2001 From: cxtom Date: Mon, 29 Apr 2019 11:02:24 +0800 Subject: [PATCH] fix: object test case --- test/features/ObjectLiteralExpression.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/features/ObjectLiteralExpression.php b/test/features/ObjectLiteralExpression.php index 4aa6bae..b4801da 100644 --- a/test/features/ObjectLiteralExpression.php +++ b/test/features/ObjectLiteralExpression.php @@ -9,4 +9,4 @@ "b" => $b, "a-b" => $b ); -array_key_exists("b", $a); +$c = array_key_exists("b", $a);