diff options
Diffstat (limited to 'Zend/tests/bug60598.phpt')
-rw-r--r-- | Zend/tests/bug60598.phpt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/tests/bug60598.phpt b/Zend/tests/bug60598.phpt index 143ac79504..2db0402fa9 100644 --- a/Zend/tests/bug60598.phpt +++ b/Zend/tests/bug60598.phpt @@ -9,12 +9,12 @@ $containers = array(); class ObjectOne { protected $_guid = 0; public function __construct() { - global $containers; - $this->guid = 1; + global $containers; + $this->guid = 1; $containers[spl_object_hash($this)] = $this; } public function __destruct() { - global $containers; + global $containers; $containers[spl_object_hash($this)] = NULL; } } |