mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
10 lines
281 B
PHP
10 lines
281 B
PHP
--TEST--
|
|
__callStatic first parameter should be a string typed
|
|
--FILE--
|
|
<?php
|
|
class Foo {
|
|
static function __callStatic(int $name, array $arguments) {}
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Foo::__callStatic(): Parameter #1 ($name) must be of type string when declared in %s on line %d
|