php-8.0.30-src/ext/spl/tests/SplDoublyLinkedList_current...

14 lines
215 B
PHP

--TEST--
Run current() function on an empty SplDoublyLinkedList.
--CREDITS--
Philip Norton philipnorton42@gmail.com
--FILE--
<?php
$list = new SplDoublyLinkedList();
var_dump($list->current());
?>
--EXPECT--
NULL