blob: 3521649dee42f7c6ed71940f33744b4c30c9a9c1 [file]
<?php
class TEST {
private function testfnc($xml) {
private $test = ""; // private can't be here
}
private function testfnc2($xml) {
$test = "";
}
}
?>