blob: 36b186d6b749c9daf552c4e52fcf19577e58ba67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
SplDoublyLinkedList::bottom() - pass in an unexpected array parameter
--CREDITS--
PHPNW Testfest 2009 - Adrian Hardy
--FILE--
<?php
$list = new SplDoublyLinkedList();
$list->push("top");
$list->bottom(array());
?>
--EXPECTF--
Warning: SplDoublyLinkedList::bottom() expects exactly 0 parameters, 1 given in %s on line %d
|