blob: 5feedd554df1cb4e46744abed83cc03f07aec794 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
__unserialize declaration
--FILE--
<?php
class Foo {
static function __unserialize($data, $value) {}
}
?>
--EXPECTF--
Warning: The magic method Foo::__unserialize() cannot be static in %s on line %d
Fatal error: Method Foo::__unserialize() must take exactly 1 argument in %s on line %d
|