blob: a0df5a2390107f39f8083f997c8fa9d43f2edef5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--TEST--
ZE2 __call() signature check
--FILE--
<?php
class Test {
function __call() {
}
}
?>
--EXPECTF--
Fatal error: Method Test::__call() must take exactly 2 arguments in %s__call_002.php on line %d
|