diff options
Diffstat (limited to 'ext/spl/tests/bug45622.phpt')
-rw-r--r-- | ext/spl/tests/bug45622.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/spl/tests/bug45622.phpt b/ext/spl/tests/bug45622.phpt index c8d16804c0..1638000f09 100644 --- a/ext/spl/tests/bug45622.phpt +++ b/ext/spl/tests/bug45622.phpt @@ -5,7 +5,7 @@ SPL: Bug #45622 (isset($arrayObject->p) misbehaves with ArrayObject::ARRAY_AS_PR class C extends ArrayObject { public $p = 'object property'; -} +} $ao = new C(array('p'=>'array element')); $ao->setFlags(ArrayObject::ARRAY_AS_PROPS); |