mirror of
https://github.com/php/php-src.git
synced 2026-03-24 16:22:37 +01:00
We fix the most often occuring typos according to a recent codespell report[1] in tests, code comments and documentation. [1] <https://fossies.org/linux/test/php-src-master-f8f48ce.191129.tar.gz/codespell.html>.
20 lines
375 B
PHP
20 lines
375 B
PHP
--TEST--
|
|
SPL: RecursiveIteratorIterator - Ensure that non-overridden methods execute problem free.
|
|
--FILE--
|
|
<?php
|
|
|
|
$array = array();
|
|
$recArrIt = new RecursiveArrayIterator($array);
|
|
|
|
$recItIt = new RecursiveIteratorIterator($recArrIt);
|
|
|
|
var_dump($recItIt->beginIteration());
|
|
var_dump($recItIt->endIteration());
|
|
var_dump($recItIt->nextElement());
|
|
|
|
?>
|
|
--EXPECT--
|
|
NULL
|
|
NULL
|
|
NULL
|