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