1
0
mirror of https://github.com/php/php-src.git synced 2026-04-11 18:13:00 +02:00
Files
archived-php-src/Zend/tests/magic_methods_005.phpt
2020-02-03 22:52:20 +01:00

13 lines
256 B
PHP

--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 cannot be static in %s on line %d