summaryrefslogtreecommitdiff
path: root/Zend/tests/magic_methods_002.phpt
blob: 56868013bf3e2887c81767d9093f0dcfddc72825 (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 foo::__unset() must have public visibility in %s on line %d