diff options
Diffstat (limited to 'ext/spl/tests/SplDoublyLinkedList_debug-info.phpt')
-rw-r--r-- | ext/spl/tests/SplDoublyLinkedList_debug-info.phpt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ext/spl/tests/SplDoublyLinkedList_debug-info.phpt b/ext/spl/tests/SplDoublyLinkedList_debug-info.phpt index c5d10919ff..b008715eef 100644 --- a/ext/spl/tests/SplDoublyLinkedList_debug-info.phpt +++ b/ext/spl/tests/SplDoublyLinkedList_debug-info.phpt @@ -4,16 +4,16 @@ Check that SplDoublyLinkedList returns debug info when print_r is used. PHPNW Testfest 2009 - Paul Court ( g@rgoyle.com ) --FILE-- <?php - // Create a new Doubly Linked List - $dll = new SplDoublyLinkedList(); + // Create a new Doubly Linked List + $dll = new SplDoublyLinkedList(); - // Add some items to the list - $dll->push(1); - $dll->push(2); - $dll->push(3); + // Add some items to the list + $dll->push(1); + $dll->push(2); + $dll->push(3); - // Check the debug info - print_r($dll); + // Check the debug info + print_r($dll); ?> --EXPECT-- SplDoublyLinkedList Object |