magic_methods_002.phpt   [plain text]


--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 cannot be static in %s on line %d