xref: /PHP-8.0/Zend/tests/magic_methods_016.phpt (revision c5401854)
1--TEST--
2__call second parameter should be an array when typed
3--FILE--
4<?php
5class Foo {
6    function __call(string $name, \Arguments $arguments) {}
7}
8?>
9--EXPECTF--
10Fatal error: Foo::__call(): Parameter #2 ($arguments) must be of type array when declared in %s on line %d
11