blob: f58ec47dcb3f68e1846cf2d2da3c5031a2505b8f (
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
|