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