mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
12 lines
215 B
PHP
12 lines
215 B
PHP
--TEST--
|
|
ZE2 __get() signature check
|
|
--FILE--
|
|
<?php
|
|
class Test {
|
|
function __get($x,$y) {
|
|
}
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Method Test::__get() must take exactly 1 argument in %s__set__get_002.php on line %d
|