xref: /php-src/Zend/tests/magic_methods_019.phpt (revision c5401854)
1--TEST--
2__unserialize first parameter must be an array
3--FILE--
4<?php
5class Foo {
6    public function __unserialize(string $name) {}
7}
8?>
9--EXPECTF--
10Fatal error: Foo::__unserialize(): Parameter #1 ($name) must be of type array when declared in %s on line %d
11