summaryrefslogtreecommitdiff
path: root/ext/spl/tests/SplFixedArray_setSize_param_null.phpt
blob: dd98935f2f209d3305ded1aa1db778884ffd7408 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
SplFixedArray::setSize() with a null parameter
--CREDITS--
PHPNW Testfest 2009 - Adrian Hardy
--FILE--
<?php
$fixed_array = new SplFixedArray(2);
$fixed_array->setSize(null);
var_dump($fixed_array);
?>
--EXPECTF--
Deprecated: SplFixedArray::setSize(): Passing null to parameter #1 ($size) of type int is deprecated in %s on line %d
object(SplFixedArray)#1 (0) {
}