blob: 1e8305e23769a6f23a67cc254d58e160d74d0a79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Testing __unset with private visibility
--FILE--
<?php
class foo {
private function __unset($a) {
print "unset\n";
}
}
?>
--EXPECTF--
Warning: The magic method __unset() must have public visibility and can not be static in %s on line %d
|