php-src/Zend/tests/errmsg_019.phpt
Nikita Popov dcaf62f3d3 Clean up zend_check_magic_method_implementation
Let everything go through a common function, which fixes some
consistency issues.
2020-07-20 10:17:40 +02:00

15 lines
230 B
PHP

--TEST--
errmsg: __destruct() cannot take arguments
--FILE--
<?php
class test {
function __destruct($var) {
}
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: Method test::__destruct() cannot take arguments in %s on line %d