1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 02:33:17 +02:00
Files
archived-php-src/Zend/tests/magic_methods_018.phpt
T
2020-08-02 01:29:56 +02:00

11 lines
281 B
PHP

--TEST--
__callStatic second parameter should be an array typed
--FILE--
<?php
class Foo {
static function __callStatic(string $name, \Arguments $args) {}
}
?>
--EXPECTF--
Fatal error: Foo::__callStatic(): Parameter #2 ($args) must be of type array when declared in %s on line %d