diff options
Diffstat (limited to 'tests/classes/destructor_and_globals.phpt')
-rw-r--r-- | tests/classes/destructor_and_globals.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/classes/destructor_and_globals.phpt b/tests/classes/destructor_and_globals.phpt index 9caf0f1026..1276d28348 100644 --- a/tests/classes/destructor_and_globals.phpt +++ b/tests/classes/destructor_and_globals.phpt @@ -28,7 +28,7 @@ class counter { global $test_cnt; $test_cnt--; } - + static public function destroy(&$obj) { $obj = NULL; } |