blob: aac3d4c6ca468a5e7301a7dbb89285eaf933742f (
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--
Fatal error: The magic method __callStatic() must have public visibility and be static in %s on line %d
|