summaryrefslogtreecommitdiff
path: root/Zend/tests/magic_methods_004.phpt
blob: 8caf5d4aa1babb1c5ec73aabc967ad68736207bc (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 __unset() must have public visibility and cannot be static in %s on line %d