From b0f472b3b2d71d2495d8c4b82a503096691b23b3 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Fri, 27 Nov 2015 11:42:30 +0800 Subject: [PATCH] Fixed test --- ext/reflection/tests/bug70982.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/reflection/tests/bug70982.phpt b/ext/reflection/tests/bug70982.phpt index 3d6aadde4d..d530846f64 100644 --- a/ext/reflection/tests/bug70982.phpt +++ b/ext/reflection/tests/bug70982.phpt @@ -6,7 +6,7 @@ class Foo { static $abc; function __construct() { - var_dump(static::$abc); + var_dump(self::$abc); } } -- 2.40.0