summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug54292.phpt
blob: 44d12ee242fb6d5566fbeacd5fbf28b66fdc66fb (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 (TypeException $e) {
	var_dump($e->getMessage());
}

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