php-src/Zend/tests/magic_methods_006.phpt
2020-04-27 16:32:00 +02:00

13 lines
249 B
PHP

--TEST--
Testing __callstatic declaration in interface with missing the 'static' modifier
--FILE--
<?php
interface a {
function __callstatic($a, $b);
}
?>
--EXPECTF--
Warning: The magic method a::__callStatic() must be static in %s on line %d