summaryrefslogtreecommitdiff
path: root/Zend/tests/bug75573.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug75573.phpt')
-rw-r--r--Zend/tests/bug75573.phpt8
1 files changed, 0 insertions, 8 deletions
diff --git a/Zend/tests/bug75573.phpt b/Zend/tests/bug75573.phpt
index 476ff6e6cf..f5e87f8283 100644
--- a/Zend/tests/bug75573.phpt
+++ b/Zend/tests/bug75573.phpt
@@ -6,10 +6,6 @@ Bug #75573 (Segmentation fault in 7.1.12 and 7.0.26)
class A
{
var $_stdObject;
- function initialize($properties = FALSE) {
- $this->_stdObject = $properties ? (object) $properties : new stdClass();
- parent::initialize();
- }
function &__get($property)
{
if (isset($this->_stdObject->{$property})) {
@@ -31,10 +27,6 @@ class A
class B extends A
{
- function initialize($properties = array())
- {
- parent::initialize($properties);
- }
function &__get($property)
{
if (isset($this->settings) && isset($this->settings[$property])) {