blob: 8e8bb4e8a2730416562117bab9be0500d05c62d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Testing __call() declaration in interface with wrong modifier
--FILE--
<?php
interface a {
static function __call($a, $b);
}
?>
--EXPECTF--
Warning: The magic method __call() must have public visibility and can not be static in %s on line %d
|