summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug54292.phpt
blob: ffbbcc3220a9d8ba095762d7f4dfe666023901da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Bug #54292 (Wrong parameter causes crash in SplFileObject::__construct())
--FILE--
<?php

try {
	new SplFileObject('foo', array());
} catch (TypeError $e) {
	var_dump($e->getMessage());
}

?>
--EXPECT--
string(74) "SplFileObject::__construct() expects parameter 2 to be string, array given"