summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug61527.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/bug61527.phpt')
-rw-r--r--ext/spl/tests/bug61527.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/spl/tests/bug61527.phpt b/ext/spl/tests/bug61527.phpt
index fa8291228c..f068897246 100644
--- a/ext/spl/tests/bug61527.phpt
+++ b/ext/spl/tests/bug61527.phpt
@@ -42,12 +42,12 @@ var_dump($ai2->next());
var_dump($ai2->key());
/* testing RecursiveArrayIterator */
-$ao3 = new ArrayObject(array(), NULL, 'RecursiveArrayIterator');
+$ao3 = new ArrayObject(array(), 0, 'RecursiveArrayIterator');
$ai3 = $ao3->getIterator();
var_dump($ai3->getChildren());
-$ao4 = new ArrayObject(array(1, 2), NULL, 'RecursiveArrayIterator');
+$ao4 = new ArrayObject(array(1, 2), 0, 'RecursiveArrayIterator');
$ai4 = $ao4->getIterator();
$ai4->next();