summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplDoublyLinkedList_add_missing_parameter1.phpt
blob: 12cfe40008b6325bf4eb6feca35e3c57937b0aca (plain)
1
2
3
4
5
6
7
8
9
10
11
--TEST--
Check that SplDoublyLinkedList::add generate a warning and returns a NULL with missing arguments
--FILE--
<?php
$dll = new SplDoublyLinkedList();
var_dump($dll->add());
?>
--EXPECTF--
Warning: SplDoublyLinkedList::add() expects exactly 2 parameters, 0 given in %s on line %d
NULL