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