blob: 2b514c3bfff9786d43dfe9330effdd2a77d154ed (
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 __callStatic() must have public visibility and be static in %s on line %d
|