summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplDoublyLinkedList_current_empty.phpt
blob: 4f80525f750228397cb17e5508bc30bec2e3dfdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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