mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
11 lines
257 B
PHP
11 lines
257 B
PHP
--TEST--
|
|
__unserialize first parameter must be an array
|
|
--FILE--
|
|
<?php
|
|
class Foo {
|
|
public function __unserialize(string $name) {}
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Foo::__unserialize(): Parameter #1 ($name) must be of type array when declared in %s on line %d
|