1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00
Files
archived-php-src/Zend/tests/magic_methods_015.phpt
T
2020-08-02 01:29:56 +02:00

11 lines
253 B
PHP

--TEST--
__call first parameter should be a string typed
--FILE--
<?php
class Foo {
function __call(int $name, array $arguments) {}
}
?>
--EXPECTF--
Fatal error: Foo::__call(): Parameter #1 ($name) must be of type string when declared in %s on line %d