1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00
Files
archived-php-src/Zend/tests/magic_methods_sleep.phpt
T
2020-08-02 01:29:56 +02:00

11 lines
199 B
PHP

--TEST--
__sleep cannot take arguments
--FILE--
<?php
class Foo {
public function __sleep(string $name) {}
}
?>
--EXPECTF--
Fatal error: Method Foo::__sleep() cannot take arguments in %s on line %d