php-src/Zend/tests/magic_methods_002.phpt

15 lines
247 B
Plaintext
Raw Permalink Normal View History

--TEST--
Testing __unset with private visibility
--FILE--
<?php
2018-09-16 17:16:42 +00:00
class foo {
2020-02-03 21:52:20 +00:00
private function __unset($a) {
print "unset\n";
}
}
?>
--EXPECTF--
Warning: The magic method foo::__unset() must have public visibility in %s on line %d